Skip to content

Commit

Permalink
Docs: Fix broken link to config/test/
Browse files Browse the repository at this point in the history
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
```
  • Loading branch information
Krinkle committed Aug 16, 2021
1 parent d1b6a17 commit 3613d64
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions docs/config/filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/config/module.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/config/moduleId.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions docs/config/testId.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 3613d64

Please sign in to comment.