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 e4e015d commit 90afe10Copy full SHA for 90afe10
14_contains/solution/contains-solution.spec.js
@@ -40,7 +40,7 @@ describe('contains', () => {
40
expect(contains(object, 'e')).toBe(true);
41
});
42
43
- test('false if the provided property exists but is not a primitive', () => {
+ test('false if the provided value exists but is not a primitive', () => {
44
expect(contains(object, [42])).toBe(false);
45
46
0 commit comments