mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
ebd7e7ad81
* update telemetry to support more anonymized project id * Create strange-laws-kick.md * respond to nate feedback
9 lines
302 B
JavaScript
9 lines
302 B
JavaScript
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);
|
|
});
|
|
});
|