Repository URL to install this package:
|
Version:
0.0.3 ▾
|
const config = require('../config');
describe('config', () => {
describe('.get()', () => {
it('reads the configuration from the package.json', () => {
const configObject = config.get();
expect(configObject.reportsPath).toEqual('dist');
});
});
});