assert.notDeepStrictEqual(actual, expected[, message])


用于深严格不等式的测试。与 assert.deepStrictEqual() 相反。

【Tests for deep strict inequality. Opposite of assert.deepStrictEqual().】

import assert from 'node:assert/strict';

assert.notDeepStrictEqual({ a: 1 }, { a: '1' });
// OKconst assert = require('node:assert/strict');

assert.notDeepStrictEqual({ a: 1 }, { a: '1' });
// OK

如果值是深度且严格相等的,将抛出一个 AssertionError,其 message 属性设置为 message 参数的值。如果 message 参数未定义,则会分配一个默认错误消息。如果 message 参数是 <Error> 的实例,则将抛出该实例而不是 AssertionError

【If the values are deeply and strictly equal, an AssertionError is thrown with a message property set equal to the value of the message parameter. If the message parameter is undefined, a default error message is assigned. If the message parameter is an instance of <Error> then it will be thrown instead of the AssertionError.】