Skip to content

Commit d1734fb

Browse files
committed
test(e2e): add spacing around crash buttons
previously they were the ugliest, my fault
1 parent a7729a5 commit d1734fb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/app.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,17 @@ function Root() {
5353
style={{ flex: 1, paddingTop: 20, justifyContent: 'center', alignItems: 'center' }}
5454
>
5555
<Text style={{ fontSize: 25, marginBottom: 30 }}>React Native Firebase</Text>
56-
<Text style={{ fontSize: 25, marginBottom: 30 }}>End-to-End Testing App2</Text>
56+
<Text style={{ fontSize: 25, marginBottom: 30 }}>End-to-End Testing App</Text>
5757
<Button
58+
style={{ flex: 1, marginTop: 20 }}
5859
title={'Test Native Crash Now.'}
5960
onPress={() => {
6061
firebase.crashlytics().crash();
6162
}}
6263
/>
64+
<View testId="spacer" style={{ height: 20 }} />
6365
<Button
66+
style={{ flex: 1, marginTop: 20 }}
6467
title={'Test Javascript Crash Now.'}
6568
onPress={() => {
6669
undefinedVariable.notAFunction();

0 commit comments

Comments
 (0)