* Assert that ``actual`` is strictly false * * @param {Any} actual - Value that is asserted to be false * @param {string} [description] - Description of the condition being tested
(actual, description)
| 1554 | * @param {string} [description] - Description of the condition being tested |
| 1555 | */ |
| 1556 | function assert_false(actual, description) |
| 1557 | { |
| 1558 | assert(actual === false, "assert_false", description, |
| 1559 | "expected false got ${actual}", {actual:actual}); |
| 1560 | } |
| 1561 | expose_assert(assert_false, "assert_false"); |
| 1562 | |
| 1563 | function same_value(x, y) { |
no test coverage detected
searching dependent graphs…