-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathfunctional.spec.jsx.snap
More file actions
89 lines (84 loc) · 1.2 KB
/
functional.spec.jsx.snap
File metadata and controls
89 lines (84 loc) · 1.2 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
exports[`functional tests should update nested props 1`] = `
".button-id {
font-size: 12px;
}
.div-1-id {
padding: 15px;
}
.div-3-id:hover .button-id {
color: green;
}
.div-4-id:hover .button-id {
color: red;
}"
`;
exports[`functional tests should update nested props 2`] = `
".button-id {
font-size: 12px;
}
.div-1-id {
padding: 15px;
}
.div-3-id:hover .button-id {
color: red;
}
.div-4-id:hover .button-id {
color: green;
}"
`;
exports[`functional tests should update props and unmount 1`] = `
".div-1-id {
margin: 50px;
}
.header-2-id {
padding: 10px;
}
.h1-5-id {
color: red;
}
.section-3-id {
color: red;
}
.button-6-id {
margin: 0;
}
.button-7-id {
margin: 10px;
}
.section-4-id {
color: yellow;
}"
`;
exports[`functional tests should update props and unmount 2`] = `
".div-1-id {
margin: 50px;
}
.header-2-id {
padding: 10px;
}
.h1-5-id {
color: red;
}
.section-3-id {
color: red;
}
.button-6-id {
margin: 0;
}
.button-7-id {
margin: 20px;
}
.section-4-id {
color: yellow;
}"
`;
exports[`functional tests should use props on remount 1`] = `
".button-1-id {
color: black;
}"
`;
exports[`functional tests should use props on remount 2`] = `
".button-1-id {
color: red;
}"
`;