UNPKG

unexpected

Version:
16 lines (11 loc) 234 B
Asserts that the value is `true`. ```javascript expect(true, 'to be true'); ``` In case of a failing expectation you get the following output: ```javascript expect(false, 'to be true'); ``` ```output expected false to be true ```