aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2019-03-11 17:25:48 +0100
committerGitHub <noreply@github.com>2019-03-11 17:25:48 +0100
commit84b6a0beb1de193520bb5541c841cbecc7195a5b (patch)
treec203f964231b307817f60dacf0ed33260548a98c /build
parentca9356ecce0d45e80794e4fb1a94f283675526ba (diff)
downloadjquery-84b6a0beb1de193520bb5541c841cbecc7195a5b.tar.gz
jquery-84b6a0beb1de193520bb5541c841cbecc7195a5b.zip
Build: Remove manual QUnit fixture resetting
It was needed when QUnit 1.x one used but we've since upgraded to QUnit 2.x. Closes gh-4312 Ref gh-4307
Diffstat (limited to 'build')
-rw-r--r--build/tasks/qunit_fixture.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/build/tasks/qunit_fixture.js b/build/tasks/qunit_fixture.js
index eb9b5636b..3f332dad0 100644
--- a/build/tasks/qunit_fixture.js
+++ b/build/tasks/qunit_fixture.js
@@ -13,9 +13,7 @@ module.exports = function( grunt ) {
"utf8"
).toString().replace( /\r\n/g, "\n" )
) +
- ";\n" +
- "// Compat with QUnit 1.x:\n" +
- "document.getElementById( \"qunit-fixture\" ).innerHTML = QUnit.config.fixture;\n"
+ ";\n"
);
grunt.log.ok( "Updated " + dest + "." );
} );