chore: remove walkdir dev dependency (#42591)

This commit is contained in:
Charles Kerr 2024-06-21 09:31:10 -05:00 committed by GitHub
parent ba8ad4716b
commit 24d6c28b5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 10 additions and 19 deletions

View file

@ -148,7 +148,7 @@ app.whenReady().then(async () => {
};
const { getFiles } = require('./get-files');
const testFiles = await getFiles(__dirname, { filter });
const testFiles = await getFiles(__dirname, filter);
for (const file of testFiles.sort()) {
mocha.addFile(file);
}