QUnit.config.current

添加的版本:1.0.0

说明

表示当前运行测试的内部对象。

类型 object

此属性实际上不是配置选项,而是在 QUnit.config 下公开以供插件和其他集成使用。这提供了在运行时访问 QUnit 的内部 Test 对象。

内部可能会更改,恕不另行通知。如果可能,请改用QUnit.onother callbacks

示例

访问 QUnit.config.current.testName 以观察当前正在运行的测试的名称。

function whatsUp () {
  console.log(QUnit.config.current.testName);
}

QUnit.test('example', assert => {
  whatsUp();

  assert.true(true);
});