1
0
Fork 0
mirror of https://github.com/mmumshad/ansible-playable.git synced 2025-03-09 23:38:54 +00:00

Update server side test cases and disable client side tests for now. Integrate later.

This commit is contained in:
Mumshad Mannambeth 2017-07-07 12:23:45 -04:00
parent ab295a073a
commit 9c880c0bba
13 changed files with 588 additions and 318 deletions

View file

@ -371,7 +371,9 @@ gulp.task('serve:dist', cb => {
});
gulp.task('test', cb => {
return runSequence('test:server', 'test:client', cb);
//return runSequence('test:server', 'test:client', cb);
//TODO: Integrate client side tests
return runSequence('test:server', cb);
});
gulp.task('test:server', cb => {
@ -393,6 +395,11 @@ gulp.task('mocha:integration', () => {
.pipe(mocha());
});
gulp.task('mocha:integration:one', () => {
return gulp.src([`${serverPath}/**/custom_module.integration.js`, 'mocha.global.js'])
.pipe(mocha());
});
gulp.task('test:server:coverage', cb => {
runSequence('coverage:pre',
'env:all',