From f9d15c1ab018d60e769574b0c30f111f75df1ce2 Mon Sep 17 00:00:00 2001 From: Mark Chapman Date: Tue, 26 Apr 2016 17:15:54 +0100 Subject: [PATCH] Change callback --- test/gulpfile.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/gulpfile.ts b/test/gulpfile.ts index a53c5d0..67d74f0 100644 --- a/test/gulpfile.ts +++ b/test/gulpfile.ts @@ -85,7 +85,9 @@ gulp.task('karma', (done: Function) => { configFile: join(process.cwd(), TEST_DIR, 'karma.config.js'), singleRun: true, }, - done + function() { + done(); + } ).start(); });