接口:JasmineOptions

JasmineOptions

构造函数 Jasmine 的选项

成员

globals :boolean|undefined

是否创建构成 Jasmine 的 spec 编写界面的全局变量 (describe、it 等)。如果它设置为 false,则可以通过 jasmine-core 中的 noGlobals 方法访问 spec 编写界面,例如:

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

类型
  • 布尔值 | undefined
默认值
  • true

projectBaseDir :string|undefined

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

类型
  • string | undefined