You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/tests/__snapshots__/functional.spec.jsx.snap
+24-2Lines changed: 24 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -129,6 +129,30 @@ exports[`functional tests composable styles should merge all object styles 1`] =
129
129
}"
130
130
`;
131
131
132
+
exports[`functional tests composable styles should merge and compose all styles 1`] =`
133
+
".button-1-id {
134
+
margin: 20px;
135
+
padding: 20px;
136
+
}
137
+
.button-2-id {
138
+
border-radius: 100%;
139
+
color: red;
140
+
background-color: green;
141
+
}"
142
+
`;
143
+
144
+
exports[`functional tests composable styles should merge and compose all styles 2`] =`
145
+
".button-1-id {
146
+
margin: 20px;
147
+
padding: 20px;
148
+
}
149
+
.button-2-id {
150
+
border-radius: 100%;
151
+
color: black;
152
+
background-color: white;
153
+
}"
154
+
`;
155
+
132
156
exports[`functional tests should update dynamic props for conditional rules 1`] =`
133
157
".button-1-id {
134
158
padding: 10px;
@@ -301,8 +325,6 @@ exports[`functional tests should use props on remount 2`] = `
301
325
}"
302
326
`;
303
327
304
-
exports[`functional tests theming should throw an exception without ThemeProvider 1`] =`[StyledJssError: You should wrap your Application by ThemeProvider to use theme]`;
305
-
306
328
exports[`functional tests theming should update theme 1`] =`
0 commit comments