Remove Grunt from karma test chain

This commit is contained in:
Kevin Gisi
2015-06-06 10:48:38 -04:00
parent f613a5e5a7
commit ff017be664

View File

@@ -1,5 +1,7 @@
import { pipe, awaitPort, kill } from './taskHelper';
import { server as karma } from 'karma';
import { exec } from 'child_process';
import psTree from 'ps-tree';
import gulp from 'gulp';
import Q from 'q';
@@ -47,7 +49,7 @@ gulp.task('test:api', ['test:prepare'], (cb) => {
gulp.task('test:karma', ['test:prepare'], (cb) => {
let runner = exec(
testBin('grunt karma:continuous'), cb
testBin('karma start --single-run'), cb
);
pipe(runner);
});