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.
- package/package.json +1 -1
- package/src/index.js +2 -1
package/package.json
CHANGED
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
|
|
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))
|