Increase Jasmine's async timeout

This commit is contained in:
JC Brand 2019-04-22 14:39:17 +02:00
parent 25a0a898f2
commit 89804ecfd5

View File

@ -133,7 +133,8 @@ require(['console-reporter', 'mock', 'sinon', 'wait-until-promise', 'pluggable']
window.sessionStorage.clear();
// Load the specs
require(specs, function (jasmine) {
var jasmineEnv = jasmine.getEnv();
jasmine.DEFAULT_TIMEOUT_INTERVAL = 7000;
const jasmineEnv = jasmine.getEnv();
jasmineEnv.addReporter(new ConsoleReporter());
window.onload();
});