diff --git a/docs/config/filter.md b/docs/config/filter.md index e9cdf78d4..849463087 100644 --- a/docs/config/filter.md +++ b/docs/config/filter.md @@ -30,6 +30,8 @@ You can also match via a regular expression by setting the filter to a regular e While substring filters are always **case-insensitive**, a regular expression is only insensitive when passing the `/i` flag. +See also: +* [QUnit.config.module](./module.md) ### Examples diff --git a/docs/config/module.md b/docs/config/module.md index e606a9973..6d4b507c8 100644 --- a/docs/config/module.md +++ b/docs/config/module.md @@ -29,7 +29,7 @@ When specified, only a single module will be run if its name is a complete case- This option is undefined by default, which means all loaded test modules will be run. See also: -* [QUnit.config.test](./test.md). +* [QUnit.config.filter](./filter.md). * [QUnit.config.moduleId](./moduleId.md). ##### Changelog diff --git a/docs/config/moduleId.md b/docs/config/moduleId.md index b9da577f9..57a468af0 100644 --- a/docs/config/moduleId.md +++ b/docs/config/moduleId.md @@ -27,5 +27,5 @@ In the HTML Reporter, select one or more modules to run by their internal ID. Specify modules by their internally hashed identifier for a given module. You can specify one or multiple modules to run. This option powers the multi-select dropdown menu in the HTML Reporter. See also: -* [QUnit.config.test](./test.md) * [QUnit.config.module](./module.md) +* [QUnit.config.testId](./testId.md) diff --git a/docs/config/testId.md b/docs/config/testId.md index b67358506..84bff8c65 100644 --- a/docs/config/testId.md +++ b/docs/config/testId.md @@ -27,5 +27,5 @@ In the HTML Reporter, select one or more tests to run by their internal ID. This property allows QUnit to run specific tests by their internally hashed identifier. You can specify one or multiple tests to run. This option powers the "Rerun" button in the HTML Reporter. See also: -* [QUnit.config.test](./test.md) -* [QUnit.config.module](./module.md) +* [QUnit.config.filter](./filter.md) +* [QUnit.config.moduleId](./moduleId.md)