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 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 Test count
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
@@ -83,7 +83,7 @@ if (args['--names']) {
83
83
 
84
84
  if (args['--tags']) {
85
85
  const table = consoleTable.getTable(
86
- ['Tag', 'Test count'],
86
+ ['Tag', 'Tests'],
87
87
  Object.entries(tagTestCounts),
88
88
  )
89
89
  console.log(table)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "find-cypress-specs",
3
- "version": "1.5.0",
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.13.0",
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"