Skip to content

Commit 2727cc6

Browse files
committed
fix(gen:test): don't run gulp test:server on sequelize at all
1 parent 329351f commit 2727cc6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

+3-4
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)