UNPKG

generator-module-maker

Version:

Node module scaffolding template with lots of optional badges

20 lines (15 loc) 586 B
/** ****************************************************************************************************************** * @file Description of file here. * @author <%= name %> <<%= email %>> * @since 1.0.0 * @date <%= new Date().toDateString() %> *********************************************************************************************************************/ "use strict"; /* eslint-env node, jasmine, jest */ const app = require( '../' ); describe( '<%= moduleName %>', function() { it( 'should do stuff', () => { expect( 1 ).toEqual( 1 ); } ); } );