Searched refs:testAssertionMessage (Results 1 – 1 of 1) sorted by relevance
/third_party/node/test/parallel/ |
D | test-assert.js | 321 function testAssertionMessage(actual, expected, msg) { function 333 testAssertionMessage(actual, expected, strictEqualMessageStart + 349 testAssertionMessage([], '[]'); 350 testAssertionMessage(/a/, '/a/'); 351 testAssertionMessage(/abc/gim, '/abc/gim'); 352 testAssertionMessage({}, '{}'); 353 testAssertionMessage([1, 2, 3], '[\n+ 1,\n+ 2,\n+ 3\n+ ]'); 354 testAssertionMessage(function f() {}, '[Function: f]'); 355 testAssertionMessage(function() {}, '[Function (anonymous)]'); 356 testAssertionMessage(circular, [all …]
|