find-cypress-specs 1.36.1 → 1.36.3

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-13.3.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-13.3.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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "find-cypress-specs",
3
- "version": "1.36.1",
3
+ "version": "1.36.3",
4
4
  "description": "Find Cypress spec files using the config settings",
5
5
  "main": "src",
6
6
  "files": [
@@ -67,7 +67,7 @@
67
67
  "arg": "^5.0.1",
68
68
  "console.table": "^0.10.0",
69
69
  "debug": "^4.3.3",
70
- "find-test-names": "1.28.13",
70
+ "find-test-names": "1.28.14",
71
71
  "globby": "^11.1.0",
72
72
  "minimatch": "^3.0.4",
73
73
  "pluralize": "^8.0.0",
package/src/index.js CHANGED
@@ -229,6 +229,7 @@ function getSpecs(options, type, returnAbsolute = false) {
229
229
  type = options.testingType
230
230
  options = {
231
231
  version: options.version,
232
+ projectRoot: options.projectRoot,
232
233
  [type]: {
233
234
  specPattern: options.specPattern,
234
235
  excludeSpecPattern: options.excludeSpecPattern,