We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccce688 commit 5cf4592Copy full SHA for 5cf4592
1 file changed
Sprint-2/implement/contains.test.js
@@ -54,10 +54,8 @@ test("should return false if the input object do not have non existing key value
54
test("should return false if the input object do not have non existing key value", () => {
55
let mixObject = { a: 2, b: "hello", c: [] };
56
expect(contains(mixObject, "c")).toBe(false);
57
-
58
59
-expect(contains(["A", "B"], "1" )).toBe(false);
60
-expect(contains(null, "1" )).toBe(false);
61
-expect(contains(undefined, "1" )).toBe(false);
62
-expect(contains("ABC", "1" )).toBe(false);
+ expect(contains(["A", "B"], "1")).toBe(false);
+ expect(contains(null, "1")).toBe(false);
+ expect(contains(undefined, "1")).toBe(false);
+ expect(contains("ABC", "1")).toBe(false);
63
});
0 commit comments