* Assert that ``actual`` is strictly true * * @param {Any} actual - Value that is asserted to be true * @param {string} [description] - Description of the condition being tested
(actual, description)
| 1541 | * @param {string} [description] - Description of the condition being tested |
| 1542 | */ |
| 1543 | function assert_true(actual, description) |
| 1544 | { |
| 1545 | assert(actual === true, "assert_true", description, |
| 1546 | "expected true got ${actual}", {actual:actual}); |
| 1547 | } |
| 1548 | expose_assert(assert_true, "assert_true"); |
| 1549 | |
| 1550 | /** |
no test coverage detected