接口:ParallelRunnerOptions

ParallelRunnerOptions

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