From 78200868f41042a00a184e1506faaa19475877ae Mon Sep 17 00:00:00 2001 From: Philip Harrison Date: Wed, 26 Aug 2015 11:45:30 +0100 Subject: [PATCH] fix(test): error in karma when systemjs imports fail Closes #3846 --- test-main.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test-main.js b/test-main.js index 9ee8182fa5..661b10f8cc 100644 --- a/test-main.js +++ b/test-main.js @@ -39,8 +39,7 @@ System.import('angular2/src/core/dom/browser_adapter').then(function(browser_ada .then(function() { __karma__.start(); }, function(error) { - console.error(error.stack || error); - __karma__.start(); + __karma__.error(error.stack || error); });