Skip to content

Commit 3506ffa

Browse files
committed
Fix test command
1 parent 739e8c8 commit 3506ffa

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

test/test.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,18 @@
44
var path = require('path');
55
var helpers = require('yeoman-generator').test;
66

7-
describe('jQuery generator test', function () {
7+
describe('jQuery Boilerplate generator test', function () {
88
beforeEach(function (done) {
99
helpers.testDirectory(path.join(__dirname, 'temp'), function (err) {
1010
if (err) {
1111
return done(err);
1212
}
1313

14-
this.app = helpers.createGenerator('jquery:app', [
15-
'../../app'
14+
this.app = helpers.createGenerator('jquery-boilerplate:app', [
15+
'../../app', [
16+
helpers.createDummyGenerator(),
17+
'mocha:app'
18+
]
1619
]);
1720
done();
1821
}.bind(this));

0 commit comments

Comments
 (0)