find-cypress-specs 1.35.0 → 1.35.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/README.md +9 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# find-cypress-specs [![renovate-app badge][renovate-badge]][renovate-app]  [](https://github.com/bahmutov/find-cypress-specs/actions/workflows/ci.yml)
|
|
2
2
|
|
|
3
3
|
> Find Cypress spec files using the config settings
|
|
4
4
|
|
|
@@ -292,6 +292,14 @@ See example in [bahmutov/test-todomvc-using-app-actions](https://github.com/bahm
|
|
|
292
292
|
|
|
293
293
|
**Tip:** read my blog post [Convert Cypress Specs from JavaScript to TypeScript](https://glebbahmutov.com/blog/cypress-js-to-ts/).
|
|
294
294
|
|
|
295
|
+
## Custom config filename
|
|
296
|
+
|
|
297
|
+
If you want to use a custom Cypress config, pass it via the environment variable `CYPRESS_CONFIG_FILE`
|
|
298
|
+
|
|
299
|
+
```
|
|
300
|
+
$ CYPRESS_CONFIG_FILE=path/to/cypress.config.js npx find-cypres-specs ...
|
|
301
|
+
```
|
|
302
|
+
|
|
295
303
|
## Details
|
|
296
304
|
|
|
297
305
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "find-cypress-specs",
|
|
3
|
-
"version": "1.35.
|
|
3
|
+
"version": "1.35.2",
|
|
4
4
|
"description": "Find Cypress spec files using the config settings",
|
|
5
5
|
"main": "src",
|
|
6
6
|
"files": [
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
"homepage": "https://github.com/bahmutov/find-cypress-specs#readme",
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"ava": "^4.0.0",
|
|
55
|
-
"cypress": "
|
|
55
|
+
"cypress": "13.3.0",
|
|
56
56
|
"dependency-version-badge": "^1.11.0",
|
|
57
57
|
"execa-wrap": "^1.4.0",
|
|
58
58
|
"prettier": "^2.5.1",
|
|
59
59
|
"really-need": "^1.9.2",
|
|
60
|
-
"semantic-release": "
|
|
60
|
+
"semantic-release": "22.0.5",
|
|
61
61
|
"sinon": "^13.0.1",
|
|
62
62
|
"typescript": "^4.6.3"
|
|
63
63
|
},
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"pluralize": "^8.0.0",
|
|
73
73
|
"require-and-forget": "^1.0.1",
|
|
74
74
|
"shelljs": "^0.8.5",
|
|
75
|
-
"spec-change": "^1.
|
|
75
|
+
"spec-change": "^1.7.1",
|
|
76
76
|
"ts-node": "^10.9.1"
|
|
77
77
|
}
|
|
78
78
|
}
|