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);
});