用于 ParallelRunner
构造函数的选项
成员
globals :boolean|undefined
是否创建构成 Jasmine 规范编写界面的全局变量(describe、it 等)。如果将其设置为 false,则可以通过 jasmine-core 的 noGlobals
方法在工作人员中访问规范编写界面,例如
const {describe, it, expect, jasmine} = require('jasmine-core').noGlobals();
类型
- boolean | undefined
- 默认值
- true
numWorkers :number|undefined
要使用的工作进程数。
类型
- number | undefined
- 默认值
- 2
projectBaseDir :string|undefined
项目的基准目录的路径。这可以是绝对路径,也可以相对于当前工作目录的路径。如果没有指定,则将使用当前工作目录。
类型
- string | undefined