Guest User

Untitled

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