-
-
Notifications
You must be signed in to change notification settings - Fork 225
/
Copy pathtoContainValues.test.js.snap
64 lines (50 loc) · 2.82 KB
/
toContainValues.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
56
57
58
59
60
61
62
63
64
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`.not.toContainValues fails when given object contains all values including arrays 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).not.toContainValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to not contain all values:
<green>["duck", [{"bar": false, "foo": 0, "hello": "world"}]]</color>
Received:
<red>{"donald": "duck", "message": [{"bar": false, "foo": 0, "hello": "world"}]}</color>"
`;
exports[`.not.toContainValues fails when given object contains all values including objects 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).not.toContainValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to not contain all values:
<green>[{"bar": false, "foo": 0, "hello": "world"}, "duck"]</color>
Received:
<red>{"donald": "duck", "message": {"bar": false, "foo": 0, "hello": "world"}}</color>"
`;
exports[`.not.toContainValues fails when given object contains primitive values 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).not.toContainValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to not contain all values:
<green>["world", false]</color>
Received:
<red>{"bar": false, "foo": 0, "hello": "world"}</color>"
`;
exports[`.toContainValues fails when given object does not contain all primitive values 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).toContainValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to contain all values:
<green>["hello", 0, false]</color>
Received:
<red>{"bar": false, "foo": 0, "hello": "world"}</color>"
`;
exports[`.toContainValues fails when given object does not contain all values including arrays 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).toContainValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to contain all values:
<green>["duck", [{"hello": "world"}]]</color>
Received:
<red>{"donald": "duck", "message": [{"bar": false, "foo": 0, "hello": "world"}]}</color>"
`;
exports[`.toContainValues fails when given object does not contain all values including objects 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).toContainValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to contain all values:
<green>[{"hello": "world"}]</color>
Received:
<red>{"donald": "duck", "message": {"bar": false, "foo": 0, "hello": "world"}}</color>"
`;
exports[`toContainValues with custom equality tester fails when custom equality does not match any of the values 1`] = `
"<dim>expect(</intensity><red>received</color><dim>).toContainValues(</intensity><green>expected</color><dim>)</intensity>
Expected object to contain all values:
<green>["world"]</color>
Received:
<red>{"bar": false, "foo": 0, "hello": "world"}</color>"
`;