We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad3bd0c commit 1163952Copy full SHA for 1163952
components/git/wpt.js
@@ -43,10 +43,14 @@ async function main(argv) {
43
const updaters = [];
44
45
const statusFolder = path.join(nodedir, 'test', 'wpt', 'status');
46
- let supported = [];
+ let supported = [
47
+ 'dom',
48
+ 'html'
49
+ ];
50
if (fs.existsSync(statusFolder)) {
51
const jsons = fs.readdirSync(statusFolder);
- supported = jsons.map(item => item.replace('.json', ''));
52
+ supported = supported.concat(
53
+ jsons.map(item => item.replace('.json', '')));
54
} else {
55
cli.warn(`Please create the status JSON files in ${statusFolder}`);
56
}
0 commit comments