Skip to content

Commit

Permalink
Update filter CLI option docs (v29.1). Related to issue #13222
Browse files Browse the repository at this point in the history
  • Loading branch information
brunocabral88 committed Sep 28, 2022
1 parent bcf649f commit d4aacac
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions website/versioned_docs/version-29.1/CLI.md
Expand Up @@ -202,11 +202,13 @@ Alias: `-e`. Use this flag to show full diffs and errors instead of a patch.

### `--filter=<file>`

Path to a module exporting a filtering function. This asynchronous function receives a list of test paths which can be manipulated to exclude tests from running by returning an object with the "filtered" property. Especially useful when used in conjunction with a testing infrastructure to filter known broken, e.g.
Path to a module exporting a filtering function. This asynchronous function receives a list of test paths which can be manipulated to exclude tests from running by returning an object with shape `{ filtered: Array<{ test: string }> }`. Especially useful when used in conjunction with a testing infrastructure to filter known broken tests, e.g.

```js title="my-filter.js"
module.exports = testPaths => {
const allowedPaths = testPaths.filter(filteringFunction); // ["path1.spec.js", "path2.spec.js", etc]
const allowedPaths = testPaths.filter(filteringFunction)
.map(test => ({ test })); // [{ test: "path1.spec.js" }, { test: "path2.spec.js" }, etc]

return {
filtered: allowedPaths,
};
Expand Down

0 comments on commit d4aacac

Please sign in to comment.