1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-07 07:50:42 +00:00
notes/node_modules/indexes-of/test.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

39 lines
689 B
JavaScript

var tape = require('tape')
var indexes = require('./')
tape('indexes of - 2 matches', function (t) {
var x = indexes([1,2,3, 2,4,5,9,8,0], 2)
t.deepEqual(x, [1,3])
t.end()
})
tape('indexes of - 1 match', function (t) {
var x = indexes([1,2,3, 2,4,5,9,8,0], 2)
t.deepEqual(x, [1,3])
t.end()
})
tape('indexes of - empty', function (t) {
var x = indexes([1,2,3, 2,4,5,9,8,0], 24)
t.deepEqual(x, [])
t.end()
})
tape('indexes of - empty', function (t) {
var x = indexes([8,8,8,8,8,8,8], 8)
t.deepEqual(x, [0,1,2,3,4,5,6])
t.end()
})
tape('indexes of - string', function (t) {
var x = indexes('foo bar baz foo', 'foo')
t.deepEqual(x, [0, 12])
t.end()
})