mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
10 lines
302 B
JavaScript
10 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);
|
||
|
});
|
||
|
});
|