MCPcopy Create free account
hub / github.com/nodejs/node / assert_not_equals

Function assert_not_equals

deps/v8/test/wasm-js/third_party/testharness.js:1173–1182  ·  view source on GitHub ↗
(actual, expected, description)

Source from the content-addressed store, hash-verified

1171 expose(assert_equals, "assert_equals");
1172
1173 function assert_not_equals(actual, expected, description)
1174 {
1175 /*
1176 * Test if two primitives are unequal or two objects
1177 * are different objects
1178 */
1179 assert(!same_value(actual, expected), "assert_not_equals", description,
1180 "got disallowed value ${actual}",
1181 {actual:actual});
1182 }
1183 expose(assert_not_equals, "assert_not_equals");
1184
1185 function assert_in_array(actual, expected, description)

Callers

nothing calls this directly

Calls 2

assertFunction · 0.70
same_valueFunction · 0.70

Tested by

no test coverage detected