ts-mean
Version:
Boilerplate for a TS-MEAN App
15 lines (10 loc) • 320 B
text/typescript
import * as mocha from 'mocha';
import * as chai from 'chai';
import {appConfig} from './app-config';
const expect = chai.expect;
describe('AppConfig', () => {
it('should be able to set & get config', () => {
appConfig.setAppConfig('test');
expect(typeof appConfig.appConfig).to.equal('object');
});
});