diff --git a/test/react-native/features/fixtures/app/dynamic/react-native-navigation/index.js b/test/react-native/features/fixtures/app/dynamic/react-native-navigation/index.js index cfe111f47..8cd2d72b3 100644 --- a/test/react-native/features/fixtures/app/dynamic/react-native-navigation/index.js +++ b/test/react-native/features/fixtures/app/dynamic/react-native-navigation/index.js @@ -25,7 +25,7 @@ export const AppScreen = () => { const HomeScreen = (props) => { useEffect(() => { (async () => { - await delay(500) + await delay(1000) Bugsnag.notify(new Error('HomeNavigationError')) await delay(250) Navigation.push(props.componentId, { @@ -46,7 +46,7 @@ const HomeScreen = (props) => { const DetailsScreen = (props) => { useEffect(() => { (async () => { - await delay(500) + await delay(1000) Bugsnag.notify(new Error('DetailsNavigationError')) await delay(250) throw new Error('DetailsNavigationUnhandledError')