test(router): enable running the campaign in non-ES6 browsers

Closes #15806.
This commit is contained in:
Marc Laval
2017-04-06 14:11:58 +02:00
committed by Hans Larsen
parent b44b983c1f
commit 9c9f409364

View File

@ -71,4 +71,4 @@ Promise
return Promise.all(
allSpecFiles.map(function(moduleName) { return System.import(moduleName); }));
})
.then(__karma__.start, (v) => console.error(v));
.then(__karma__.start, function(v) { console.error(v); });