Skip to content

Commit

Permalink
chore: format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Ma11hewThomas committed Jan 12, 2025
1 parent e8c7c85 commit 1fb014c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,8 @@ This ensures that the test results are available for future runs.
You can merge reports if your chosen reporter generates multiple reports through
design, parallelisation or otherwise.

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
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
merge multiple ctrf json files into a single file.

After executing your tests, use the following command:
Expand All @@ -360,17 +361,21 @@ want to merge.

### Glob Pattern

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.
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.

Here are some examples of glob patterns you can use:

`ctrf/ctrf-report.json` - Matches the exact file ctrf/ctrf-report.json.

`ctrf/*.json` - Matches all .json files in the ctrf directory.

`ctrf/**/*.json`- Matches all .json files in the ctrf directory and its subdirectories.
`ctrf/**/*.json`- Matches all .json files in the ctrf directory and its
subdirectories.

`ctrf/ctrf-report*` - Matches any file starting with ctrf-report (e.g., ctrf-report.json, ctrf-report-old.json).
`ctrf/ctrf-report*` - Matches any file starting with ctrf-report (e.g.,
ctrf-report.json, ctrf-report-old.json).

## Pull Requests

Expand Down

0 comments on commit 1fb014c

Please sign in to comment.