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
This commit is contained in:
Michał Gołębiowski-Owczarek 2019-03-11 17:25:48 +01:00 committed by GitHub
parent ca9356ecce
commit 84b6a0beb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View File

@ -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 + "." );
} );

File diff suppressed because one or more lines are too long