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

26 lines
954 B
JavaScript
Raw Normal View History

const removeFromArray = require("./removeFromArray");
2017-08-24 06:12:11 -07:00
describe("removeFromArray", () => {
test("removes a single value", () => {
2021-03-09 03:12:25 -08:00
expect(removeFromArray([1, 2, 3, 4], 3)).toBe([1, 2, 4]);
2017-08-24 06:12:11 -07:00
});
xit("removes multiple values", function () {
expect(removeFromArray([1, 2, 3, 4], 3, 2)).toEqual([1, 4]);
2017-08-24 06:12:11 -07:00
});
xit("ignores non present values", function () {
expect(removeFromArray([1, 2, 3, 4], 7, "tacos")).toEqual([1, 2, 3, 4]);
2017-08-24 06:12:11 -07:00
});
xit("ignores non present values, but still works", function () {
expect(removeFromArray([1, 2, 3, 4], 7, 2)).toEqual([1, 3, 4]);
2017-08-24 06:12:11 -07:00
});
xit("can remove all values", function () {
expect(removeFromArray([1, 2, 3, 4], 1, 2, 3, 4)).toEqual([]);
2017-08-24 06:12:11 -07:00
});
xit("works with strings", function () {
expect(removeFromArray(["hey", 2, 3, "ho"], "hey", 3)).toEqual([2, "ho"]);
2017-08-24 06:12:11 -07:00
});
test.skip("only removes same type", () => {
2021-03-09 03:12:25 -08:00
expect(removeFromArray([1, 2, 3], "1", 3)).toBe([1, 2]);
});
2017-08-24 06:12:11 -07:00
});