MCPcopy Index your code
hub / github.com/parse-community/parse-server / strictEqual

Function strictEqual

spec/helper.js:322–324  ·  view source on GitHub ↗
(a, b, message)

Source from the content-addressed store, hash-verified

320 expect(a).toEqual(b, message);
321}
322function strictEqual(a, b, message) {
323 expect(a).toBe(b, message);
324}
325function notEqual(a, b, message) {
326 expect(a).not.toEqual(b, message);
327}

Calls

no outgoing calls

Tested by

no test coverage detected