Skip to content

Commit 8fc498c

Browse files
committed
chore: add info how to run integration tests to the example app
1 parent fd576c0 commit 8fc498c

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

example/src/screens/IntegrationTestsScreen.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,9 @@ const IntegrationTestsScreen = () => {
220220
}, [testStatus, detoxStepNumber]);
221221

222222
return (
223-
<View style={[styles.container]}>
224-
<View style={{ flex: 3, margin: 5 }}>
223+
<View style={styles.container}>
224+
<Text>See CONTRIBUTING.md to see how to run integration tests.</Text>
225+
<View style={{ flex: 6, margin: 5 }}>
225226
<NavigationView
226227
mapViewCallbacks={mapViewCallbacks}
227228
onMapViewControllerCreated={setMapViewController}

example/src/screens/MultipleMapsScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ const MultipleMapsScreen = () => {
325325
};
326326

327327
return arePermissionsApproved ? (
328-
<View style={[styles.container]}>
328+
<View style={styles.container}>
329329
<NavigationView
330330
androidStylingOptions={{
331331
primaryDayModeThemeColor: '#34eba8',

example/src/screens/NavigationScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ const NavigationScreen = () => {
342342
};
343343

344344
return arePermissionsApproved ? (
345-
<View style={[styles.container]}>
345+
<View style={styles.container}>
346346
<NavigationView
347347
style={[
348348
{

0 commit comments

Comments
 (0)