find-cypress-specs 1.0.3 → 1.0.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 +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "find-cypress-specs",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Find Cypress spec files using the config settings",
5
5
  "main": "src",
6
6
  "files": [
package/src/index.js CHANGED
@@ -59,7 +59,8 @@ function findCypressSpecs(opts = {}) {
59
59
  }
60
60
 
61
61
  const filtered = files.filter(doesNotMatchAllIgnoredPatterns)
62
- debug('filtered specs %o', filtered)
62
+ debug('filtered %d specs', filtered.length)
63
+ debug(filtered.join('\n'))
63
64
 
64
65
  // return spec files with the added integration folder prefix
65
66
  return filtered.map((file) => path.join(options.integrationFolder, file))