소스 검색

Increase Jasmine's async timeout

JC Brand 6 년 전
부모
커밋
89804ecfd5
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      tests/runner.js

+ 2 - 1
tests/runner.js

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