summaryrefslogtreecommitdiff
path: root/test_free_haaretz.js
blob: 08e5e463cda61305d7f3e8d04a262afd12b741ee (plain)
1
2
3
4
5
6
7
8
describe('Array', () => {
  describe('#indexOf()', () => {
    it('should return -1 when the value is not present', () => {
      assert.equal(-1, [1,2,3].indexOf(4));
    });
  });
});