-
-
Notifications
You must be signed in to change notification settings - Fork 225
/
Copy pathtoContainAnyEntries.test.js.snap
28 lines (22 loc) · 1.24 KB
/
toContainAnyEntries.test.js.snap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`.not.toContainAnyEntries fails when given object contains atleast one of the given entries 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).not.toContainAnyEntries(</intensity><green>expected</color><dim>)</intensity>
Expected object to not contain any of the provided entries:
<green>[["a", "qux"], ["a", "foo"]]</color>
Received:
<red>{"a": "foo", "b": "bar", "c": "baz"}</color>"
`;
exports[`.toContainAnyEntries fails when given object does not contain any of the given entries 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).toContainAnyEntries(</intensity><green>expected</color><dim>)</intensity>
Expected object to contain any of the provided entries:
<green>[["a", "qux"], ["b", "foo"]]</color>
Received:
<red>{"a": "foo", "b": "bar", "c": "baz"}</color>"
`;
exports[`toContainAnyEntries with custom equality tester fails when custom equality does not match any of the values 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).toContainAnyEntries(</intensity><green>expected</color><dim>)</intensity>
Expected object to contain any of the provided entries:
<green>[["a", "foo"]]</color>
Received:
<red>{"a": "foo", "b": "bar", "c": "baz"}</color>"
`;