-
-
Notifications
You must be signed in to change notification settings - Fork 225
/
Copy pathtoContainAnyValues.test.js.snap
55 lines (43 loc) · 2.22 KB
/
toContainAnyValues.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`.not.toContainAnyValues fails when given object contains value 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).not.toContainAnyValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to not contain any of the following values:
<green>["baz"]</color>
Received:
<red>{"a": "foo", "b": "bar", "c": "baz"}</color>"
`;
exports[`.not.toContainAnyValues fails when given object contains value 2`] = `
"<dim>expect(</intensity><red>received</color><dim>).not.toContainAnyValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to not contain any of the following values:
<green>["foo", "bar"]</color>
Received:
<red>{"a": "foo", "b": "bar", "c": "baz"}</color>"
`;
exports[`.toContainAnyValues fails when given object does not contain value 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).toContainAnyValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to contain any of the following values:
<green>["fax"]</color>
Received:
<red>{"a": "foo", "b": "bar", "c": "baz"}</color>"
`;
exports[`.toContainAnyValues fails when given object does not contain value 2`] = `
"<dim>expect(</intensity><red>received</color><dim>).toContainAnyValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to contain any of the following values:
<green>["fax", "rom"]</color>
Received:
<red>{"a": "foo", "b": "bar", "c": "baz"}</color>"
`;
exports[`.toContainAnyValues fails when given object does not contain value 3`] = `
"<dim>expect(</intensity><red>received</color><dim>).toContainAnyValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to contain any of the following values:
<green>["dae", "mur", "zoe"]</color>
Received:
<red>{"a": "foo", "b": "bar", "c": "baz"}</color>"
`;
exports[`toContainAnyValues with custom equality tester fails when custom equality does not match any of the values 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).toContainAnyValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to contain any of the following values:
<green>["bar"]</color>
Received:
<red>{"a": "foo", "b": "bar", "c": "baz"}</color>"
`;