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


版本历史
版本变更
v9.0.0

不再将 -0+0 视为相等。

v9.0.0

现在使用 SameValueZero 比较来比较 NaN

v9.0.0

现在可以正确地比较 Error 名称和消息。

v8.0.0

也比较 SetMap 的内容。

v6.1.0

现在可以将具有循环引用的对象用作输入。

v6.4.0, v4.7.1

现在可以正确地处理类型化数组切片。

v5.10.1, v4.4.3

正确地处理非 Uint8Array 类型的数组。

v1.2.0

新增于: v1.2.0

检验深度严格不相等。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.

AltStyle によって変換されたページ (->オリジナル) /