summaryrefslogtreecommitdiff
path: root/packages/telemetry/test/config.test.js
blob: a74e8d6f01302c3dc0bbe2ec64ed9ba6ae66177e (plain) (blame)
1
2
3
4
5
6
7
8
9
import { expect } from 'chai';
import { GlobalConfig } from '../dist/config.js';

describe('GlobalConfig', () => {
	it('initializes when expected arguments are given', () => {
		const config = new GlobalConfig({ name: 'TEST_NAME' });
		expect(config).to.be.instanceOf(GlobalConfig);
	});
});