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 83527fd4fb
commit 46ce3317c3
No known key found for this signature in database
GPG Key ID: 537DD9CDA3032687
1 changed files with 1 additions and 1 deletions

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); });