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__/render-debug.test.tsx.snap
+199-6Lines changed: 199 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -80,14 +80,207 @@ exports[`debug 1`] = `
80
80
</View>"
81
81
`;
82
82
83
-
exports[`debug changing component: bananaFresh button message should now be "fresh" 1`] =`"💠 Test "debug changing component": using internal renderer"`;
83
+
exports[`debug changing component: bananaFresh button message should now be "fresh" 1`] =`
exports[`debug should use debugOptions from config when no option is specified 1`] =`"💠 Test "debug should use debugOptions from config when no option is specified": using internal renderer"`;
163
+
exports[`debug should use debugOptions from config when no option is specified 1`] =`
164
+
"<View>
165
+
<Text>
166
+
hello
167
+
</Text>
168
+
</View>"
169
+
`;
86
170
87
-
exports[`debug should use given options over config debugOptions 1`] =`"💠 Test "debug should use given options over config debugOptions": using internal renderer"`;
171
+
exports[`debug should use given options over config debugOptions 1`] =`
172
+
"<View
173
+
style={
174
+
{
175
+
"backgroundColor": "red",
176
+
}
177
+
}
178
+
>
179
+
<Text>
180
+
hello
181
+
</Text>
182
+
</View>"
183
+
`;
88
184
89
-
exports[`debug with only children prop 1`] =`"💠 Test "debug with only children prop": using internal renderer"`;
185
+
exports[`debug with only children prop 1`] =`
186
+
"<View>
187
+
<Text>
188
+
Is the banana fresh?
189
+
</Text>
190
+
<Text>
191
+
not fresh
192
+
</Text>
193
+
<TextInput />
194
+
<TextInput />
195
+
<TextInput />
196
+
<TextInput />
197
+
<View>
198
+
<Text>
199
+
Change freshness!
200
+
</Text>
201
+
</View>
202
+
<Text>
203
+
First Text
204
+
</Text>
205
+
<Text>
206
+
Second Text
207
+
</Text>
208
+
<Text>
209
+
0
210
+
</Text>
211
+
</View>"
212
+
`;
90
213
91
-
exports[`debug with only prop whose value is bananaChef 1`] =`"💠 Test "debug with only prop whose value is bananaChef": using internal renderer"`;
214
+
exports[`debug with only prop whose value is bananaChef 1`] =`
215
+
"<View>
216
+
<Text>
217
+
Is the banana fresh?
218
+
</Text>
219
+
<Text>
220
+
not fresh
221
+
</Text>
222
+
<TextInput />
223
+
<TextInput
224
+
testID="bananaChef"
225
+
/>
226
+
<TextInput />
227
+
<TextInput />
228
+
<View>
229
+
<Text>
230
+
Change freshness!
231
+
</Text>
232
+
</View>
233
+
<Text>
234
+
First Text
235
+
</Text>
236
+
<Text>
237
+
Second Text
238
+
</Text>
239
+
<Text>
240
+
0
241
+
</Text>
242
+
</View>"
243
+
`;
92
244
93
-
exports[`debug with only props from TextInput components 1`] =`"💠 Test "debug with only props from TextInput components": using internal renderer"`;
245
+
exports[`debug with only props from TextInput components 1`] =`
0 commit comments