@bahmutov/cy-grep 1.5.1 → 1.5.2
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/plugin.js +3 -2
package/package.json
CHANGED
package/src/plugin.js
CHANGED
@@ -176,13 +176,14 @@ function cypressGrepPlugin(config) {
|
|
176
176
|
const relativeNames = greppedSpecs.map((filename) =>
|
177
177
|
path.relative(integrationFolder, filename),
|
178
178
|
)
|
179
|
+
const relativeSpecs = relativeNames.join(', ')
|
179
180
|
debug(
|
180
181
|
'specs in the integration folder %s %s',
|
181
182
|
integrationFolder,
|
182
|
-
|
183
|
+
relativeSpecs,
|
183
184
|
)
|
184
185
|
// @ts-ignore
|
185
|
-
config.testFiles = relativeNames
|
186
|
+
config.testFiles = relativeNames
|
186
187
|
} else {
|
187
188
|
debug('setting selected %d specs (>= v10)', greppedSpecs.length)
|
188
189
|
// @ts-ignore
|