Skip to content

Commit d1152fd

Browse files
committed
doc: correct concurrency wording in test() documentation
1 parent 6c306b6 commit d1152fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/api/test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1619,7 +1619,7 @@ changes:
16191619
* `options` {Object} Configuration options for the test. The following
16201620
properties are supported:
16211621
* `concurrency` {number|boolean} If a number is provided,
1622-
then that many tests would run in parallel within the application thread.
1622+
then that many tests would run concurrently within the test process.
16231623
If `true`, all scheduled asynchronous tests run concurrently within the
16241624
thread. If `false`, only one test runs at a time.
16251625
If unspecified, subtests inherit this value from their parent.
@@ -3882,7 +3882,7 @@ changes:
38823882
* `options` {Object} Configuration options for the subtest. The following
38833883
properties are supported:
38843884
* `concurrency` {number|boolean|null} If a number is provided,
3885-
then that many tests would run in parallel within the application thread.
3885+
then that many tests would run concurrently within the test process.
38863886
If `true`, it would run all subtests in parallel.
38873887
If `false`, it would only run one test at a time.
38883888
If unspecified, subtests inherit this value from their parent.

0 commit comments

Comments
 (0)