Revert "Resolve merge conflicts"

This reverts commit 61338e0ca0, reversing
changes made to b9983073cc.
This commit is contained in:
Tatiana
2021-05-08 11:27:13 -07:00
parent 18cffeb940
commit b2f2211321
18 changed files with 91 additions and 11174 deletions
+5 -5
View File
@@ -1,8 +1,8 @@
const removeFromArray = require("./removeFromArray");
describe("removeFromArray", () => {
test("removes a single value", () => {
expect(removeFromArray([1, 2, 3, 4], 3)).toBe([1, 2, 4]);
describe("removeFromArray", function () {
it("removes a single value", function () {
expect(removeFromArray([1, 2, 3, 4], 3)).toEqual([1, 2, 4]);
});
xit("removes multiple values", function () {
expect(removeFromArray([1, 2, 3, 4], 3, 2)).toEqual([1, 4]);
@@ -19,7 +19,7 @@ describe("removeFromArray", () => {
xit("works with strings", function () {
expect(removeFromArray(["hey", 2, 3, "ho"], "hey", 3)).toEqual([2, "ho"]);
});
test.skip("only removes same type", () => {
expect(removeFromArray([1, 2, 3], "1", 3)).toBe([1, 2]);
xit("only removes same type", function () {
expect(removeFromArray([1, 2, 3], "1", 3)).toEqual([1, 2]);
});
});