generator-jstack
Version:
A front-end application generator for RequireJS, KnockoutJS, Sass, Pure, Jasmine, Sinon and Karma
15 lines (12 loc) • 337 B
JavaScript
/**
* @author <%= appauthor %>
* @license <%= applicense %>
*/
define(['scripts/module'], function (module) {
'use strict';
describe('The module', function () {
it('has a property called testString', function () {
expect(module.testString).toEqual('require working!');
});
});
});