Skip to content

Commit 623cf11

Browse files
vsemozhetbyttargos
authored andcommitted
test: skip non-doc files in test-make-doc checks
PR-URL: #21531 Fixes: #21519 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Gus Caplan <[email protected]>
1 parent 0f1d737 commit 623cf11

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/doctool/test-make-doc.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@ const apiPath = path.resolve(__dirname, '..', '..', 'out', 'doc', 'api');
1515
const allDocs = fs.readdirSync(apiPath);
1616
assert.ok(allDocs.includes('_toc.html'));
1717

18-
const filter = ['assets', '_toc.html', '.md'];
1918
const actualDocs = allDocs.filter(
20-
(name) => !filter.some((str) => name.includes(str))
19+
(name) => {
20+
const extension = path.extname(name);
21+
return (extension === '.html' || extension === '.json') &&
22+
name !== '_toc.html';
23+
}
2124
);
2225

2326
const toc = fs.readFileSync(path.resolve(apiPath, '_toc.html'), 'utf8');

0 commit comments

Comments
 (0)