aboutsummaryrefslogtreecommitdiffstats
path: root/build/tasks/qunit-fixture.js
blob: a8b90653f7b3b19ecf7c72fa5087858c47f0c030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import fs from "node:fs/promises";

async function generateFixture() {
	const fixture = await fs.readFile( "./test/data/qunit-fixture.html", "utf8" );
	await fs.writeFile(
		"./test/data/qunit-fixture.js",
		"// Generated by build/tasks/qunit-fixture.js\n" +
		"QUnit.config.fixture = " +
			JSON.stringify( fixture.replace( /\r\n/g, "\n" ) ) +
		";\n"
	);
	console.log( "Updated ./test/data/qunit-fixture.js" );
}

generateFixture();