Skip to content

Commit

Permalink
updated docs regarding testSequencer (#9174)
Browse files Browse the repository at this point in the history
  • Loading branch information
saiumesh535 committed May 3, 2020
1 parent 2e8f8d5 commit 4216b86
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/Configuration.md
Expand Up @@ -1085,6 +1085,7 @@ Example:
Sort test path alphabetically.

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

class CustomSequencer extends Sequencer {
Expand All @@ -1099,6 +1100,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
9 changes: 9 additions & 0 deletions website/versioned_docs/version-24.x/Configuration.md
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
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 4216b86

Please sign in to comment.