Commit 89804ecf authored by JC Brand's avatar JC Brand

Increase Jasmine's async timeout

parent 25a0a898
...@@ -133,7 +133,8 @@ require(['console-reporter', 'mock', 'sinon', 'wait-until-promise', 'pluggable'] ...@@ -133,7 +133,8 @@ require(['console-reporter', 'mock', 'sinon', 'wait-until-promise', 'pluggable']
window.sessionStorage.clear(); window.sessionStorage.clear();
// Load the specs // Load the specs
require(specs, function (jasmine) { require(specs, function (jasmine) {
var jasmineEnv = jasmine.getEnv(); jasmine.DEFAULT_TIMEOUT_INTERVAL = 7000;
const jasmineEnv = jasmine.getEnv();
jasmineEnv.addReporter(new ConsoleReporter()); jasmineEnv.addReporter(new ConsoleReporter());
window.onload(); window.onload();
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment