Skip to content

Commit fb469cf

Browse files
committed
test(gen): clean up main.test
1 parent f1d3a7c commit fb469cf

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

src/test/main.test.js

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import {
1515
} from './test-helpers';
1616

1717
const defaultOptions = {
18-
buildtool: 'gulp',
1918
transpiler: 'babel',
2019
flow: true,
2120
markup: 'html',
@@ -134,12 +133,12 @@ describe('angular-fullstack:app', function() {
134133
if(!process.env.SKIP_E2E) {
135134
it.skip('should run e2e tests successfully', function() {
136135
this.retries(2);
137-
return runCmd('gulp test:e2e').should.be.fulfilled();
136+
return runCmd('npm run test:e2e').should.be.fulfilled();
138137
});
139138

140139
it.skip('should run e2e tests successfully for production app', function() {
141140
this.retries(2);
142-
return runCmd('gulp test:e2e:prod').should.be.fulfilled();
141+
return runCmd('npm run test:e2e:prod').should.be.fulfilled();
143142
});
144143
}
145144
});
@@ -190,7 +189,6 @@ describe('angular-fullstack:app', function() {
190189
var clientTestResult;
191190
var serverTestResult;
192191
var testOptions = {
193-
buildtool: 'gulp',
194192
transpiler: 'ts',
195193
markup: 'html',
196194
stylesheet: 'less',
@@ -246,12 +244,12 @@ describe('angular-fullstack:app', function() {
246244
if(!process.env.SKIP_E2E) {
247245
it.skip('should run e2e tests successfully', function() {
248246
this.retries(2);
249-
return runCmd('gulp test:e2e').should.be.fulfilled();
247+
return runCmd('npm run test:e2e').should.be.fulfilled();
250248
});
251249

252250
it.skip('should run e2e tests successfully for production app', function() {
253251
this.retries(2);
254-
return runCmd('gulp test:e2e:prod').should.be.fulfilled();
252+
return runCmd('npm run test:e2e:prod').should.be.fulfilled();
255253
});
256254
}
257255
});
@@ -262,7 +260,6 @@ describe('angular-fullstack:app', function() {
262260
var clientTestResult;
263261
var serverTestResult;
264262
var testOptions = {
265-
buildtool: 'gulp',
266263
transpiler: 'babel',
267264
flow: true,
268265
markup: 'pug',
@@ -319,12 +316,12 @@ describe('angular-fullstack:app', function() {
319316
if(!process.env.SKIP_E2E) {
320317
it.skip('should run e2e tests successfully', function() {
321318
this.retries(2);
322-
return runCmd('gulp test:e2e').should.be.fulfilled();
319+
return runCmd('npm run test:e2e').should.be.fulfilled();
323320
});
324321

325322
it.skip('should run e2e tests successfully for production app', function() {
326323
this.retries(2);
327-
return runCmd('gulp test:e2e:prod').should.be.fulfilled();
324+
return runCmd('npm run test:e2e:prod').should.be.fulfilled();
328325
});
329326
}
330327
});
@@ -335,7 +332,6 @@ describe('angular-fullstack:app', function() {
335332
var clientTestResult;
336333
var serverTestResult;
337334
var testOptions = {
338-
buildtool: 'gulp',
339335
transpiler: 'ts',
340336
markup: 'pug',
341337
stylesheet: 'stylus',
@@ -392,12 +388,12 @@ describe('angular-fullstack:app', function() {
392388
if(!process.env.SKIP_E2E) {
393389
it.skip('should run e2e tests successfully', function() {
394390
this.retries(2);
395-
return runCmd('gulp test:e2e').should.be.fulfilled();
391+
return runCmd('npm run test:e2e').should.be.fulfilled();
396392
});
397393

398394
it.skip('should run e2e tests successfully for production app', function() {
399395
this.retries(2);
400-
return runCmd('gulp test:e2e:prod').should.be.fulfilled();
396+
return runCmd('npm run test:e2e:prod').should.be.fulfilled();
401397
});
402398
}
403399
});

0 commit comments

Comments
 (0)