From 90d24291ce3905139825bab667f7e8a52a7f8297 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Lemaire?= Date: Fri, 16 Mar 2018 17:47:10 +0100 Subject: [PATCH] Fixed test task --- runfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runfile.js b/runfile.js index 8bb5313..96bf8a2 100644 --- a/runfile.js +++ b/runfile.js @@ -189,7 +189,7 @@ function deploy(task) { * Run tests in karma, using freshly built app */ function test(task) { - return ts().then(() => { + return Promise.all([ts(), vendors()]).then(() => { return exec("karma start spec/support/karma.conf.js"); }).then(() => { return exec("remap-istanbul -i out/coverage/coverage.json -o out/coverage -t html");