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