deployment-tools
Version:
A Node.js scripts that helps you to compile and deploy the static assets (CSS/JavaScript/images) of your website without gulp and grunt using Node.js and npm scripts
17 lines (15 loc) • 553 B
JavaScript
import test from 'blue-tape';
import { stub } from 'sinon';
import c from '../src/libs/config';
/** @test {config} */
test('config', assert => {
// first check if module exists
// assert.equal(config, , 'should be private');
const mockFs = {
readFileSync: stub().returns(JSON.stringify({ version: 2, config: { } })),
};
const config = c({ fileSystem: mockFs, inDev: false }).load();
assert.equal(config.store, undefined, 'should be private');
assert.deepEqual(config.get('version'), 2, 'should configured');
assert.end();
});