Skip to content

Commit fd576c0

Browse files
committed
chore: separate integration tests in example app
1 parent f611a43 commit fd576c0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

example/src/App.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ const HomeScreen = () => {
4747
const isFocused = useIsFocused();
4848

4949
return (
50-
<View style={[styles.container]}>
50+
<View style={styles.container}>
51+
{/* Spacer */}
52+
<View style={styles.container} />
5153
<View style={styles.buttonContainer}>
5254
<Button
5355
title="Navigation"
@@ -60,8 +62,11 @@ const HomeScreen = () => {
6062
onPress={() => isFocused && navigate('Multiple maps')}
6163
/>
6264
</View>
65+
{/* Spacer */}
66+
<View style={styles.container} />
6367
<View style={styles.buttonContainer}>
6468
<Button
69+
color="grey"
6570
title="Integration Tests"
6671
testID="integration_tests_button"
6772
onPress={() => isFocused && navigate('Integration tests')}

0 commit comments

Comments
 (0)