Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
ranyitz committed Oct 7, 2018
commit e61b3315e3d25da875f1572303808119f1626afe
4 changes: 2 additions & 2 deletions docs/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,15 +323,15 @@ Default: `undefined`

This option allows the use of a custom global setup module which exports an async function that is triggered once before all test suites. This function gets Jest's `globalConfig` object as a parameter.

Note: A global setup module configured in a project (using multi-project runner) will be triggered only when you run at list one test from this project.
Note: A global setup module configured in a project (using multi-project runner) will be triggered only when you run at least one test from this project.

### `globalTeardown` [string]

Default: `undefined`

This option allows the use of a custom global teardown module which exports an async function that is triggered once after all test suites. This function gets Jest's `globalConfig` object as a parameter.

Note: A global teardown module configured in a project (using multi-project runner) will be triggered only when you run at list one test from this project.
Note: A global teardown module configured in a project (using multi-project runner) will be triggered only when you run at least one test from this project.

### `moduleDirectories` [array<string>]

Expand Down