Skip to content

Commit 53a24a3

Browse files
committed
test(gen:main): fix reg e2e tests running prod tests instead
1 parent 5aca55f commit 53a24a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: src/test/main.test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ describe('angular-fullstack:app', function() {
284284

285285
if(!process.env.SKIP_E2E) {
286286
it('should run e2e tests successfully', function() {
287-
return runCmd('grunt test:e2e:prod').should.be.fulfilled();
287+
return runCmd('grunt test:e2e').should.be.fulfilled();
288288
});
289289

290290
it('should run e2e tests successfully for production app', function() {
@@ -352,7 +352,7 @@ describe('angular-fullstack:app', function() {
352352

353353
if(!process.env.SKIP_E2E) {
354354
it('should run e2e tests successfully', function() {
355-
return runCmd('grunt test:e2e:prod').should.be.fulfilled();
355+
return runCmd('grunt test').should.be.fulfilled();
356356
});
357357

358358
it('should run e2e tests successfully for production app', function() {
@@ -421,7 +421,7 @@ describe('angular-fullstack:app', function() {
421421

422422
if(!process.env.SKIP_E2E) {
423423
it('should run e2e tests successfully', function() {
424-
return runCmd('grunt test:e2e:prod').should.be.fulfilled();
424+
return runCmd('grunt test:e2e').should.be.fulfilled();
425425
});
426426

427427
it('should run e2e tests successfully for production app', function() {

0 commit comments

Comments
 (0)