Skip to content

Commit

Permalink
Add to versioned docs
Browse files Browse the repository at this point in the history
  • Loading branch information
thymikee committed May 3, 2020
1 parent c143513 commit 1c391ea
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions website/versioned_docs/version-24.x/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -1064,6 +1064,7 @@ Example:
Sort test path alphabetically.

```js
// testSequencer.js
const Sequencer = require('@jest/test-sequencer').default;

class CustomSequencer extends Sequencer {
Expand All @@ -1078,6 +1079,14 @@ class CustomSequencer extends Sequencer {
module.exports = CustomSequencer;
```

Use it in your Jest config file like this:

```json
{
"testSequencer": "path/to/testSequencer.js"
}
```

### `testURL` [string]

Default: `http://localhost`
Expand Down
9 changes: 9 additions & 0 deletions website/versioned_docs/version-25.5/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -1086,6 +1086,7 @@ Example:
Sort test path alphabetically.

```js
// testSequencer.js
const Sequencer = require('@jest/test-sequencer').default;

class CustomSequencer extends Sequencer {
Expand All @@ -1100,6 +1101,14 @@ class CustomSequencer extends Sequencer {
module.exports = CustomSequencer;
```

Use it in your Jest config file like this:

```json
{
"testSequencer": "path/to/testSequencer.js"
}
```

### `testTimeout` [number]

Default: `5000`
Expand Down

0 comments on commit 1c391ea

Please sign in to comment.