Skip to content

Commit

Permalink
increase delay in scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
yousif-bugsnag committed Sep 19, 2024
1 parent 1e0f5f8 commit e4ed494
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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, {
Expand All @@ -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')
Expand Down

0 comments on commit e4ed494

Please sign in to comment.