File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export type RstestPoolType = 'forks';
10
10
11
11
export type RstestPoolOptions = {
12
12
/** Pool used to run tests in. */
13
- type : RstestPoolType ;
13
+ type ? : RstestPoolType ;
14
14
/** Maximum number or percentage of workers to run tests in. */
15
15
maxWorkers ?: number | string ;
16
16
/** Minimum number or percentage of workers to run tests in. */
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ overviewHeaders: []
9
9
``` ts
10
10
export type RstestPoolOptions = {
11
11
/** Pool used to run tests in. */
12
- type: ' fork' ;
12
+ type? : ' fork' ;
13
13
/** Maximum number or percentage of workers to run tests in. */
14
14
maxWorkers? : number | string ;
15
15
/** Minimum number or percentage of workers to run tests in. */
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ overviewHeaders: []
9
9
``` ts
10
10
export type RstestPoolOptions = {
11
11
/** 用于运行测试的线程池 */
12
- type: ' fork' ;
12
+ type? : ' fork' ;
13
13
/** 最大运行的线程池的数量或百分比 */
14
14
maxWorkers? : number | string ;
15
15
/** 最小运行的线程池的数量或百分比 */
You can’t perform that action at this time.
0 commit comments