fix(tests): add missing ;s
This commit is contained in:
parent
27c6afbeb4
commit
59c1299168
|
@ -30,17 +30,17 @@ System.import('angular2/src/dom/browser_adapter').then(function(browser_adapter)
|
||||||
.map(function(path) {
|
.map(function(path) {
|
||||||
return System.import(path).then(function(module) {
|
return System.import(path).then(function(module) {
|
||||||
if (module.hasOwnProperty('main')) {
|
if (module.hasOwnProperty('main')) {
|
||||||
module.main()
|
module.main();
|
||||||
} else {
|
} else {
|
||||||
throw new Error('Module ' + path + ' does not implement main() method.');
|
throw new Error('Module ' + path + ' does not implement main() method.');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}))
|
}));
|
||||||
})
|
})
|
||||||
.then(function() {
|
.then(function() {
|
||||||
__karma__.start();
|
__karma__.start();
|
||||||
}, function(error) {
|
}, function(error) {
|
||||||
console.error(error.stack || error)
|
console.error(error.stack || error);
|
||||||
__karma__.start();
|
__karma__.start();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue