You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -346,7 +346,8 @@ This ensures that the test results are available for future runs.
346
346
You can merge reports if your chosen reporter generates multiple reports through
347
347
design, parallelisation or otherwise.
348
348
349
-
If you use a glob pattern, reports will be merged automatically, otherwise the [ctrf-cli](https://github.com/ctrf-io/ctrf-cli) package provides a method to
349
+
If you use a glob pattern, reports will be merged automatically, otherwise the
350
+
[ctrf-cli](https://github.com/ctrf-io/ctrf-cli) package provides a method to
350
351
merge multiple ctrf json files into a single file.
351
352
352
353
After executing your tests, use the following command:
@@ -360,17 +361,21 @@ want to merge.
360
361
361
362
### Glob Pattern
362
363
363
-
A glob pattern is a string that specifies sets of filenames with wildcards and special characters. This allows you to match multiple files or directories without specifying each file explicitly.
364
+
A glob pattern is a string that specifies sets of filenames with wildcards and
365
+
special characters. This allows you to match multiple files or directories
366
+
without specifying each file explicitly.
364
367
365
368
Here are some examples of glob patterns you can use:
366
369
367
370
`ctrf/ctrf-report.json`- Matches the exact file ctrf/ctrf-report.json.
368
371
369
372
`ctrf/*.json`- Matches all .json files in the ctrf directory.
370
373
371
-
`ctrf/**/*.json`- Matches all .json files in the ctrf directory and its subdirectories.
374
+
`ctrf/**/*.json`- Matches all .json files in the ctrf directory and its
375
+
subdirectories.
372
376
373
-
`ctrf/ctrf-report*`- Matches any file starting with ctrf-report (e.g., ctrf-report.json, ctrf-report-old.json).
377
+
`ctrf/ctrf-report*`- Matches any file starting with ctrf-report (e.g.,
0 commit comments