Skip to content

Commit 5eab0a3

Browse files
committed
Tests: Increase nomodule test timeout for IE from 1s to 5s
In IE, these tests are expected to be executed, so the timeout can be higher, similar to how we set a high timeout for module tests. Ref gh-5699
1 parent a5b0c43 commit 5eab0a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/manipulation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1894,7 +1894,7 @@ QUnit.test( "html(Function)", function( assert ) {
18941894
setup( {
18951895
assert: assert,
18961896
done: done,
1897-
timeout: 1000,
1897+
timeout: QUnit.isIE ? 5000 : 1000,
18981898
expectedCount: QUnit.isIE ? 1 : 0
18991899
} );
19001900

0 commit comments

Comments
 (0)