Skip to content

Commit 021010d

Browse files
committed
chore: fixed eslint errors, updated eslint dependencies
1 parent ccc43e3 commit 021010d

File tree

3 files changed

+4064
-5664
lines changed

3 files changed

+4064
-5664
lines changed

cypress-tags.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ if (!envGlob) {
5454
let testFiles = !Array.isArray(cypressConf.testFiles)
5555
? cypressConf.testFiles.split(",")
5656
: cypressConf.testFiles;
57-
testFiles = testFiles.map(pattern => `${integrationFolder}/${pattern}`);
57+
testFiles = testFiles.map((pattern) => `${integrationFolder}/${pattern}`);
5858
specGlob =
5959
testFiles.length > 1 ? `{${testFiles.join(",")}}` : testFiles[0];
6060
} else {
@@ -77,9 +77,9 @@ debug("Found tag expression", envTags);
7777
const paths = glob
7878
.sync(specGlob, {
7979
nodir: true,
80-
ignore: usingCypressConf ? ignoreGlob : ""
80+
ignore: usingCypressConf ? ignoreGlob : "",
8181
})
82-
.filter(pathName => pathName.endsWith(".feature"));
82+
.filter((pathName) => pathName.endsWith(".feature"));
8383

8484
const featuresToRun = [];
8585

0 commit comments

Comments
 (0)