Skip to content

Commit 3536b45

Browse files
committed
fix unexpected files created in tests
1 parent a330070 commit 3536b45

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Diff for: test/test-file-creation.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,9 @@ describe('angular-fullstack generator', function () {
345345
mongoose: true,
346346
auth: true,
347347
oauth: ['twitterAuth', 'facebookAuth', 'googleAuth'],
348-
socketio: true
348+
socketio: true,
349+
bootstrap: true,
350+
uibootstrap: true
349351
};
350352

351353
beforeEach(function() {
@@ -387,7 +389,9 @@ describe('angular-fullstack generator', function () {
387389
mongoose: false,
388390
auth: false,
389391
oauth: [],
390-
socketio: false
392+
socketio: false,
393+
bootstrap: false,
394+
uibootstrap: false
391395
};
392396

393397
beforeEach(function(done) {
@@ -430,7 +434,9 @@ describe('angular-fullstack generator', function () {
430434
mongoose: false,
431435
auth: false,
432436
oauth: [],
433-
socketio: false
437+
socketio: false,
438+
bootstrap: true,
439+
uibootstrap: true
434440
};
435441

436442
beforeEach(function(done) {

0 commit comments

Comments
 (0)