find-cypress-specs 1.5.0 → 1.6.0
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/README.md +3 -1
- package/bin/find.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -39,12 +39,14 @@ You can count tags attached to the individual tests using `--names --tags` argum
|
|
|
39
39
|
$ npx find-cypress-specs --names --tags
|
|
40
40
|
# prints the specs and tests and at the end prints the tags table
|
|
41
41
|
|
|
42
|
-
Tag
|
|
42
|
+
Tag Tests
|
|
43
43
|
----- ----------
|
|
44
44
|
@user 2
|
|
45
45
|
@sign 1
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
+
Each tag count includes the tests that use the tag directly, and the _effective_ tags applied from the parent suites.
|
|
49
|
+
|
|
48
50
|
## Details
|
|
49
51
|
|
|
50
52
|
Cypress uses the resolved [configuration values](https://on.cypress.io/configuration) to find the spec files to run. It searches the `integrationFolder` for all patterns listed in `testFiles` and removes any files matching the `ignoreTestFiles` patterns.
|
package/bin/find.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "find-cypress-specs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Find Cypress spec files using the config settings",
|
|
5
5
|
"main": "src",
|
|
6
6
|
"files": [
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"arg": "^5.0.1",
|
|
42
42
|
"console.table": "^0.10.0",
|
|
43
43
|
"debug": "^4.3.3",
|
|
44
|
-
"find-test-names": "^1.
|
|
44
|
+
"find-test-names": "^1.14.0",
|
|
45
45
|
"globby": "^11.0.4",
|
|
46
46
|
"minimatch": "^3.0.4",
|
|
47
47
|
"pluralize": "^8.0.0"
|