mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
6c38ebbd47
Close gh-3929
23 lines
603 B
JavaScript
23 lines
603 B
JavaScript
var fs = require( "fs" );
|
|
|
|
module.exports = function( grunt ) {
|
|
grunt.registerTask( "qunit_fixture", function() {
|
|
var dest = "./test/data/qunit-fixture.js";
|
|
fs.writeFileSync(
|
|
dest,
|
|
"// Generated by build/tasks/qunit_fixture.js\n" +
|
|
"QUnit.config.fixture = " +
|
|
JSON.stringify(
|
|
fs.readFileSync(
|
|
"./test/data/qunit-fixture.html",
|
|
"utf8"
|
|
).toString().replace( /\r\n/g, "\n" )
|
|
) +
|
|
";\n" +
|
|
"// Compat with QUnit 1.x:\n" +
|
|
"document.getElementById( \"qunit-fixture\" ).innerHTML = QUnit.config.fixture;\n"
|
|
);
|
|
grunt.log.ok( "Updated " + dest + "." );
|
|
} );
|
|
};
|