Skip to content

Commit 68b34f3

Browse files
committed
add production e2e tests back in, only test against node 0.10.x
closes #604
1 parent add986f commit 68b34f3

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

Diff for: .travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: node_js
22
node_js:
33
- '0.10'
4-
- '0.11.13'
54
env:
65
global:
76
- SAUCE_USERNAME=fullstack_ci

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

+15-3
Original file line numberDiff line numberDiff line change
@@ -434,9 +434,9 @@ describe('angular-fullstack generator', function () {
434434
runTest('grunt test:e2e', this, done, 240000);
435435
});
436436

437-
//it('should run e2e tests successfully for production app', function(done) {
438-
// runTest('grunt test:e2e:prod', this, done, 240000);
439-
//});
437+
it('should run e2e tests successfully for production app', function(done) {
438+
runTest('grunt test:e2e:prod', this, done, 240000);
439+
});
440440
});
441441

442442
describe('with other preprocessors and oauth', function() {
@@ -503,6 +503,10 @@ describe('angular-fullstack generator', function () {
503503
runTest('grunt test:e2e', this, done, 240000);
504504
});
505505

506+
it('should run e2e tests successfully for production app', function(done) {
507+
runTest('grunt test:e2e:prod', this, done, 240000);
508+
});
509+
506510
});
507511

508512
describe('with other preprocessors and no server options', function() {
@@ -571,6 +575,10 @@ describe('angular-fullstack generator', function () {
571575
runTest('grunt test:e2e', this, done, 240000);
572576
});
573577

578+
it('should run e2e tests successfully for production app', function(done) {
579+
runTest('grunt test:e2e:prod', this, done, 240000);
580+
});
581+
574582
});
575583

576584
describe('with no preprocessors and no server options', function() {
@@ -626,6 +634,10 @@ describe('angular-fullstack generator', function () {
626634
runTest('grunt test:e2e', this, done, 240000);
627635
});
628636

637+
it('should run e2e tests successfully for production app', function(done) {
638+
runTest('grunt test:e2e:prod', this, done, 240000);
639+
});
640+
629641
});
630642
});
631643
});

0 commit comments

Comments
 (0)