Guest User

Untitled

a guest
Oct 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. test('Assert', () =>
  2. {
  3. console.assert(false, "This should fail the test");
  4. });
  5.  
  6. console.assert = (statement, message) => {
  7. if (!statement) throw new Error(message);
  8. };
Add Comment
Please, Sign In to add comment