File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 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() {
281281 dir = _dir ;
282282 lintResult = runCmd ( 'gulp lint:scripts' ) ;
283283 clientTestResult = runCmd ( 'gulp test:client' ) ;
284- serverTestResult = runCmd ( 'gulp test:server' ) ;
285284 } ) ;
286285 } ) ;
287286
@@ -300,17 +299,17 @@ describe('angular-fullstack:app', function() {
300299 } ) ;
301300
302301 it . skip ( 'should run server tests successfully' , function ( ) {
303- return serverTestResult . should . be . fulfilled ( ) ;
302+ return runCmd ( 'gulp test:server' ) . should . be . fulfilled ( ) ;
304303 } ) ;
305304
306- describe ( 'with a generated endpoint' , function ( ) {
305+ describe . skip ( 'with a generated endpoint' , function ( ) {
307306 beforeEach ( function ( ) {
308307 return readJSON ( path . join ( dir , '.yo-rc.json' ) ) . then ( config => {
309308 return runEndpointGen ( 'foo' , { config : config [ 'generator-angular-fullstack' ] } ) ;
310309 } ) ;
311310 } ) ;
312311
313- it . skip ( 'should run server tests successfully' , function ( ) {
312+ it ( 'should run server tests successfully' , function ( ) {
314313 return runCmd ( 'gulp test:server' ) . should . be . fulfilled ( ) ;
315314 } ) ;
316315 } ) ;
You can’t perform that action at this time.
0 commit comments