Guest User

Untitled

a guest
Jul 15th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var assert = require('assert');
  2.  
  3. describe('Array', function() {
  4. describe('#indexOf()', function() {
  5. it('should return -1 when the value is not present', function() {
  6.  
  7. assert.equal([1,2,3].indexOf(4), -1);
  8. });
  9. });
  10. });
Add Comment
Please, Sign In to add comment