generator-xtc
Version:
A generator for xtc projects
16 lines (12 loc) • 358 B
JavaScript
xtc.tests.<%= nameJS %> = function(mod, options) {
// Start a QUnit module for this Terrific module
module(this.name, {
// prepare something for each following test()
setup: function () {},
// clean up after each test()
teardown: function () {}
});
test( 'Dummy test', function() {
ok( true, '<%= nameJS %> tests are working.' );
});
};