Skip to content

Commit 7820086

Browse files
committed
fix(test): error in karma when systemjs imports fail
Closes #3846
1 parent 256b2dc commit 7820086

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test-main.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ System.import('angular2/src/core/dom/browser_adapter').then(function(browser_ada
3939
.then(function() {
4040
__karma__.start();
4141
}, function(error) {
42-
console.error(error.stack || error);
43-
__karma__.start();
42+
__karma__.error(error.stack || error);
4443
});
4544

4645

0 commit comments

Comments
 (0)