find-cypress-specs 1.19.2 → 1.19.4

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
@@ -1,4 +1,4 @@
1
- # find-cypress-specs [![renovate-app badge][renovate-badge]][renovate-app] ![cypress version](https://img.shields.io/badge/cypress-10.8.0-brightgreen) [![ci](https://github.com/bahmutov/find-cypress-specs/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/bahmutov/find-cypress-specs/actions/workflows/ci.yml)
1
+ # find-cypress-specs [![renovate-app badge][renovate-badge]][renovate-app] ![cypress version](https://img.shields.io/badge/cypress-12.0.1-brightgreen) [![ci](https://github.com/bahmutov/find-cypress-specs/actions/workflows/ci.yml/badge.svg?branch=main)](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
 
@@ -173,6 +173,7 @@ Author: Gleb Bahmutov <gleb.bahmutov@gmail.com> © 2022
173
173
  - [presentations](https://slides.com/bahmutov)
174
174
  - [cypress.tips](https://cypress.tips)
175
175
  - [Cypress Tips&Tricks](https://cypresstips.substack.com/) newsletter
176
+ - [my Cypress courses](https://cypress.tips/courses)
176
177
 
177
178
  License: MIT - do anything with the code, but don't blame me if it does not work.
178
179
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "find-cypress-specs",
3
- "version": "1.19.2",
3
+ "version": "1.19.4",
4
4
  "description": "Find Cypress spec files using the config settings",
5
5
  "main": "src",
6
6
  "files": [
@@ -40,7 +40,7 @@
40
40
  "homepage": "https://github.com/bahmutov/find-cypress-specs#readme",
41
41
  "devDependencies": {
42
42
  "ava": "^4.0.0",
43
- "cypress": "10.8.0",
43
+ "cypress": "12.0.1",
44
44
  "execa-wrap": "^1.4.0",
45
45
  "prettier": "^2.5.1",
46
46
  "really-need": "^1.9.2",
@@ -52,7 +52,7 @@
52
52
  "arg": "^5.0.1",
53
53
  "console.table": "^0.10.0",
54
54
  "debug": "^4.3.3",
55
- "find-test-names": "^1.15.1",
55
+ "find-test-names": "1.22.0",
56
56
  "globby": "^11.0.4",
57
57
  "minimatch": "^3.0.4",
58
58
  "pluralize": "^8.0.0",
package/src/index.js CHANGED
@@ -58,7 +58,7 @@ function getConfig() {
58
58
 
59
59
  if (fs.existsSync('./cypress.json')) {
60
60
  debug('found file cypress.json')
61
- return getConfigJson('./cypress.config.js')
61
+ return getConfigJson('./cypress.json')
62
62
  }
63
63
 
64
64
  throw new Error('Do not know how to find and load Cypress config file')