fix: correctly show error when karma fails to load
This commit is contained in:

committed by
Matias Niemelä

parent
9211a22039
commit
31322e73b7
@ -82,9 +82,7 @@ System.import('@angular/core/testing')
|
||||
});
|
||||
}));
|
||||
})
|
||||
.then(
|
||||
function() { __karma__.start(); },
|
||||
function(error) { __karma__.error(error.stack || error); });
|
||||
.then(function() { __karma__.start(); }, function(error) { console.error(error); });
|
||||
|
||||
|
||||
function onlySpecFiles(path) {
|
||||
|
Reference in New Issue
Block a user