find-cypress-specs 1.29.3 → 1.29.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "find-cypress-specs",
3
- "version": "1.29.3",
3
+ "version": "1.29.4",
4
4
  "description": "Find Cypress spec files using the config settings",
5
5
  "main": "src",
6
6
  "files": [
package/src/index.js CHANGED
@@ -197,6 +197,7 @@ function getSpecs(options, type) {
197
197
  if ('testingType' in options) {
198
198
  type = options.testingType
199
199
  options = {
200
+ version: options.version,
200
201
  [type]: {
201
202
  specPattern: options.specPattern,
202
203
  excludeSpecPattern: options.excludeSpecPattern,