File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -281,7 +281,6 @@ describe('angular-fullstack:app', function() {
281
281
dir = _dir ;
282
282
lintResult = runCmd ( 'gulp lint:scripts' ) ;
283
283
clientTestResult = runCmd ( 'gulp test:client' ) ;
284
- serverTestResult = runCmd ( 'gulp test:server' ) ;
285
284
} ) ;
286
285
} ) ;
287
286
@@ -300,17 +299,17 @@ describe('angular-fullstack:app', function() {
300
299
} ) ;
301
300
302
301
it . skip ( 'should run server tests successfully' , function ( ) {
303
- return serverTestResult . should . be . fulfilled ( ) ;
302
+ return runCmd ( 'gulp test:server' ) . should . be . fulfilled ( ) ;
304
303
} ) ;
305
304
306
- describe ( 'with a generated endpoint' , function ( ) {
305
+ describe . skip ( 'with a generated endpoint' , function ( ) {
307
306
beforeEach ( function ( ) {
308
307
return readJSON ( path . join ( dir , '.yo-rc.json' ) ) . then ( config => {
309
308
return runEndpointGen ( 'foo' , { config : config [ 'generator-angular-fullstack' ] } ) ;
310
309
} ) ;
311
310
} ) ;
312
311
313
- it . skip ( 'should run server tests successfully' , function ( ) {
312
+ it ( 'should run server tests successfully' , function ( ) {
314
313
return runCmd ( 'gulp test:server' ) . should . be . fulfilled ( ) ;
315
314
} ) ;
316
315
} ) ;
You can’t perform that action at this time.
0 commit comments