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 23ea55a commit e98c222Copy full SHA for e98c222
genMatrix.js
@@ -10,7 +10,7 @@ const testFiles = [
10
const nodeDirRegex = /^\d+$/;
11
12
const areTestFilesChanged = (changedFiles) => changedFiles
13
- .filter((file) => testFiles.includes(file)).length;
+ .some((file) => testFiles.includes(file));
14
15
// Returns a list of the child directories in the given path
16
const getChildDirectories = (parent) => fs.readdirSync(parent, { withFileTypes: true })
0 commit comments