From 3613d643375d3491a3e3c9d0f8bf5adf49aad537 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Mon, 16 Aug 2021 03:44:47 +0100 Subject: [PATCH] Docs: Fix broken link to config/test/ This isn't page didn't exist. Found by the hydra-link-checker job: ``` title: Broken Link Report broken: 3 --- - parent: https://api.qunitjs.com/config/moduleId/ url: https://api.qunitjs.com/config/moduleId/test.md error: Not Found - parent: https://api.qunitjs.com/config/module/ url: https://api.qunitjs.com/config/module/test.md error: Not Found - parent: https://api.qunitjs.com/config/testId/ url: https://api.qunitjs.com/config/testId/test.md error: Not Found ``` --- docs/config/filter.md | 2 ++ docs/config/module.md | 2 +- docs/config/moduleId.md | 2 +- docs/config/testId.md | 4 ++-- 4 files changed, 6 insertions(+), 4 deletions(-) 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)