Files
odin-javascript-exercises/removeFromArray/removeFromArray.spec.js
T

26 lines
994 B
JavaScript
Raw Normal View History

2021-05-08 11:31:02 -07:00
const expect = require('expect');const removeFromArray = require('./removeFromArray')
2017-08-24 08:12:11 -05:00
describe('removeFromArray', function() {
it('removes a single value', function() {
2021-05-08 11:27:13 -07:00
expect(removeFromArray([1, 2, 3, 4], 3)).toEqual([1, 2, 4]);
2017-08-24 08:12:11 -05:00
});
xit('removes multiple values', function() {
2021-05-08 11:25:04 -07:00
expect(removeFromArray([1, 2, 3, 4], 3, 2)).toEqual([1, 4]);
2017-08-24 08:12:11 -05:00
});
xit('ignores non present values', function() {
2021-05-08 11:25:04 -07:00
expect(removeFromArray([1, 2, 3, 4], 7, "tacos")).toEqual([1, 2, 3, 4]);
2017-08-24 08:12:11 -05:00
});
xit('ignores non present values, but still works', function() {
2021-05-08 11:25:04 -07:00
expect(removeFromArray([1, 2, 3, 4], 7, 2)).toEqual([1, 3, 4]);
2017-08-24 08:12:11 -05:00
});
xit('can remove all values', function() {
2021-05-08 11:25:04 -07:00
expect(removeFromArray([1, 2, 3, 4], 1, 2, 3, 4)).toEqual([]);
2017-08-24 08:12:11 -05:00
});
xit('works with strings', function() {
2021-05-08 11:25:04 -07:00
expect(removeFromArray(["hey", 2, 3, "ho"], "hey", 3)).toEqual([2, "ho"]);
2017-08-24 08:12:11 -05:00
});
xit('only removes same type', function() {
2021-05-08 11:27:13 -07:00
expect(removeFromArray([1, 2, 3], "1", 3)).toEqual([1, 2]);
2020-05-08 16:54:31 +10:00
});
2017-08-24 08:12:11 -05:00
});