@@ -15,7 +15,6 @@ import {
15
15
} from './test-helpers' ;
16
16
17
17
const defaultOptions = {
18
- buildtool : 'gulp' ,
19
18
transpiler : 'babel' ,
20
19
flow : true ,
21
20
markup : 'html' ,
@@ -134,12 +133,12 @@ describe('angular-fullstack:app', function() {
134
133
if ( ! process . env . SKIP_E2E ) {
135
134
it . skip ( 'should run e2e tests successfully' , function ( ) {
136
135
this . retries ( 2 ) ;
137
- return runCmd ( 'gulp test:e2e' ) . should . be . fulfilled ( ) ;
136
+ return runCmd ( 'npm run test:e2e' ) . should . be . fulfilled ( ) ;
138
137
} ) ;
139
138
140
139
it . skip ( 'should run e2e tests successfully for production app' , function ( ) {
141
140
this . retries ( 2 ) ;
142
- return runCmd ( 'gulp test:e2e:prod' ) . should . be . fulfilled ( ) ;
141
+ return runCmd ( 'npm run test:e2e:prod' ) . should . be . fulfilled ( ) ;
143
142
} ) ;
144
143
}
145
144
} ) ;
@@ -190,7 +189,6 @@ describe('angular-fullstack:app', function() {
190
189
var clientTestResult ;
191
190
var serverTestResult ;
192
191
var testOptions = {
193
- buildtool : 'gulp' ,
194
192
transpiler : 'ts' ,
195
193
markup : 'html' ,
196
194
stylesheet : 'less' ,
@@ -246,12 +244,12 @@ describe('angular-fullstack:app', function() {
246
244
if ( ! process . env . SKIP_E2E ) {
247
245
it . skip ( 'should run e2e tests successfully' , function ( ) {
248
246
this . retries ( 2 ) ;
249
- return runCmd ( 'gulp test:e2e' ) . should . be . fulfilled ( ) ;
247
+ return runCmd ( 'npm run test:e2e' ) . should . be . fulfilled ( ) ;
250
248
} ) ;
251
249
252
250
it . skip ( 'should run e2e tests successfully for production app' , function ( ) {
253
251
this . retries ( 2 ) ;
254
- return runCmd ( 'gulp test:e2e:prod' ) . should . be . fulfilled ( ) ;
252
+ return runCmd ( 'npm run test:e2e:prod' ) . should . be . fulfilled ( ) ;
255
253
} ) ;
256
254
}
257
255
} ) ;
@@ -262,7 +260,6 @@ describe('angular-fullstack:app', function() {
262
260
var clientTestResult ;
263
261
var serverTestResult ;
264
262
var testOptions = {
265
- buildtool : 'gulp' ,
266
263
transpiler : 'babel' ,
267
264
flow : true ,
268
265
markup : 'pug' ,
@@ -319,12 +316,12 @@ describe('angular-fullstack:app', function() {
319
316
if ( ! process . env . SKIP_E2E ) {
320
317
it . skip ( 'should run e2e tests successfully' , function ( ) {
321
318
this . retries ( 2 ) ;
322
- return runCmd ( 'gulp test:e2e' ) . should . be . fulfilled ( ) ;
319
+ return runCmd ( 'npm run test:e2e' ) . should . be . fulfilled ( ) ;
323
320
} ) ;
324
321
325
322
it . skip ( 'should run e2e tests successfully for production app' , function ( ) {
326
323
this . retries ( 2 ) ;
327
- return runCmd ( 'gulp test:e2e:prod' ) . should . be . fulfilled ( ) ;
324
+ return runCmd ( 'npm run test:e2e:prod' ) . should . be . fulfilled ( ) ;
328
325
} ) ;
329
326
}
330
327
} ) ;
@@ -335,7 +332,6 @@ describe('angular-fullstack:app', function() {
335
332
var clientTestResult ;
336
333
var serverTestResult ;
337
334
var testOptions = {
338
- buildtool : 'gulp' ,
339
335
transpiler : 'ts' ,
340
336
markup : 'pug' ,
341
337
stylesheet : 'stylus' ,
@@ -392,12 +388,12 @@ describe('angular-fullstack:app', function() {
392
388
if ( ! process . env . SKIP_E2E ) {
393
389
it . skip ( 'should run e2e tests successfully' , function ( ) {
394
390
this . retries ( 2 ) ;
395
- return runCmd ( 'gulp test:e2e' ) . should . be . fulfilled ( ) ;
391
+ return runCmd ( 'npm run test:e2e' ) . should . be . fulfilled ( ) ;
396
392
} ) ;
397
393
398
394
it . skip ( 'should run e2e tests successfully for production app' , function ( ) {
399
395
this . retries ( 2 ) ;
400
- return runCmd ( 'gulp test:e2e:prod' ) . should . be . fulfilled ( ) ;
396
+ return runCmd ( 'npm run test:e2e:prod' ) . should . be . fulfilled ( ) ;
401
397
} ) ;
402
398
}
403
399
} ) ;
0 commit comments