From ff017be6645a2b9663d5b7003d010a9d9d74fceb Mon Sep 17 00:00:00 2001 From: Kevin Gisi Date: Sat, 6 Jun 2015 10:48:38 -0400 Subject: [PATCH] Remove Grunt from karma test chain --- tasks/gulp-tests.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tasks/gulp-tests.js b/tasks/gulp-tests.js index e7dd263bf4..2e8bbf7485 100644 --- a/tasks/gulp-tests.js +++ b/tasks/gulp-tests.js @@ -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); });