Skip to content

Commit 11fc178

Browse files
committed
docs: update concurrency wording per reviewer suggestion
1 parent d1152fd commit 11fc178

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 concurrently within the test process.
1622+
then that many tests would run asynchronously (they are still managed by the single-threaded event loop).
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 concurrently within the test process.
3885+
then that many tests would run asynchronously (they are still managed by the single-threaded event loop).
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)