fix(tests): add missing ;s

This commit is contained in:
Victor Berchet 2015-04-01 15:30:46 +02:00
parent 27c6afbeb4
commit 59c1299168
1 changed files with 3 additions and 3 deletions

View File

@ -30,17 +30,17 @@ System.import('angular2/src/dom/browser_adapter').then(function(browser_adapter)
.map(function(path) {
return System.import(path).then(function(module) {
if (module.hasOwnProperty('main')) {
module.main()
module.main();
} else {
throw new Error('Module ' + path + ' does not implement main() method.');
}
});
}))
}));
})
.then(function() {
__karma__.start();
}, function(error) {
console.error(error.stack || error)
console.error(error.stack || error);
__karma__.start();
});