界面:JasmineOptions

JasmineOptions

用于 Jasmine 构造函数的选项

成员

globals :boolean|undefined

是否创建构成 Jasmine 规范编写界面的全局变量(describe、id 等)。如果将其设为 false,可以通过 jasmine-core 的 noGlobals 方法访问规范编写界面,例如:

const {describe, it, expect, jasmine} = require('jasmine-core').noGlobals();

类型
  • boolean | undefined
默认值
  • true

projectBaseDir :string|undefined

项目基目录的路径。该路径可以是绝对路径,也可以相对于当前工作目录的路径。如果未指定该路径,则将使用当前工作目录。

类型
  • string | undefined