Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. test('this is a dummy test', function(assert) {
  2. const a = true;
  3. const b = true;
  4.  
  5. // a developer can quickly scan these messages to understand what
  6. // needs to happen and why.
  7. assert.ok(a, 'A is true when X');
  8. assert.equal(a, b, 'A and B are equal when X');
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement