find-cypress-specs 1.44.0 → 1.44.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/find.js +5 -7
- package/package.json +2 -2
package/bin/find.js
CHANGED
|
@@ -337,16 +337,14 @@ if (args['--test-counts']) {
|
|
|
337
337
|
debug('finding tests with title containing "%s"', grep)
|
|
338
338
|
const { jsonResults } = getTests(specs)
|
|
339
339
|
const filtered = filterByGrep(jsonResults, grep)
|
|
340
|
-
debug(
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
debug('printing the spec names list only')
|
|
344
|
-
const specNames = filtered.join(',')
|
|
345
|
-
console.log(specNames)
|
|
340
|
+
debug('printing the spec names list only')
|
|
341
|
+
const specNames = filtered.join(',')
|
|
342
|
+
console.log(specNames)
|
|
346
343
|
|
|
344
|
+
if (args['--set-gha-outputs']) {
|
|
347
345
|
debug(
|
|
348
346
|
'setting GitHub Actions outputs grepSpecsN to %d and grepSpecs',
|
|
349
|
-
|
|
347
|
+
filtered.length,
|
|
350
348
|
)
|
|
351
349
|
core.setOutput('grepSpecsN', filtered.length)
|
|
352
350
|
core.setOutput('grepSpecs', specNames)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "find-cypress-specs",
|
|
3
|
-
"version": "1.44.
|
|
3
|
+
"version": "1.44.2",
|
|
4
4
|
"description": "Find Cypress spec files using the config settings",
|
|
5
5
|
"main": "src",
|
|
6
6
|
"files": [
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"arg": "^5.0.1",
|
|
73
73
|
"console.table": "^0.10.0",
|
|
74
74
|
"debug": "^4.3.3",
|
|
75
|
-
"find-test-names": "1.28.
|
|
75
|
+
"find-test-names": "1.28.23",
|
|
76
76
|
"globby": "^11.1.0",
|
|
77
77
|
"minimatch": "^3.0.4",
|
|
78
78
|
"pluralize": "^8.0.0",
|