We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 752f002 + e613f72 commit 744927eCopy full SHA for 744927e
addon-test-support/ember-qunit/index.js
@@ -34,6 +34,11 @@ export function setupTest(hooks, _options) {
34
this.pauseTest = function QUnit_pauseTest() {
35
assert.timeout(-1); // prevent the test from timing out
36
37
+ // This is a temporary work around for
38
+ // https://github.com/emberjs/ember-qunit/issues/496 this clears the
39
+ // timeout that would fail the test when it hits the global testTimeout
40
+ // value.
41
+ clearTimeout(QUnit.config.timeout);
42
return originalPauseTest.call(this);
43
};
44
});
0 commit comments