assert.notPropContains()

添加的版本:2.18.0

說明

notPropContains( actual, expected, message = "" )

檢查對象是否不包含某些屬性。

名字 說明
actual 正在測試的表達式
expected 已知比較值
message(字符串) 實際值的簡短說明

notPropContains 斷言比較預期對象中的屬性子集,並根據嚴格的相等比較測試這些鍵是否不存在或持有不同的值。

此方法是遞歸的,也允許對嵌套對象進行部分比較。

也可以看看

例子

QUnit.test('example', assert => {
  const result = {
    foo: 0,
    vehicle: {
      timeCircuits: 'on',
      fluxCapacitor: 'fluxing',
      engine: 'running'
    },
    quux: 1
  };

  // succeeds, property "timeCircuits" is actually "on"
  assert.notPropContains(result, {
    vehicle: {
      timeCircuits: 'off'
    }
  });

  // succeeds, property "wings" is not in the object
  assert.notPropContains(result, {
    vehicle: {
      wings: 'flapping'
    }
  });

  function Point (x, y) {
    this.x = x;
    this.y = y;
  }

  assert.notPropContains(
    new Point(10, 20),
    { z: 30 }
  );

  const nested = {
    north: [ /* ... */ ],
    east: new Point(10, 20),
    south: [ /* ... */ ],
    west: [ /* ... */ ]
  };

  assert.notPropContains(nested, { east: new Point(88, 42) });
  assert.notPropContains(nested, { east: { x: 88 } });
});