Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions apps/simple-camera/rn-harness.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,10 @@ const iosAppLaunchOptions = iosMetroHostPort
: undefined

const isCI = process.env.CI === 'true'
const bundleStartTimeout = isCI ? 90_000 : 15_000
const bridgeTimeout = isCI ? 120_000 : 45_000
const maxAppRestarts = isCI ? 4 : 2
const bundleStartTimeout = isCI ? 30_000 : 15_000
const bridgeTimeout = 45_000
const platformReadyTimeout = 60_000
const maxAppRestarts = isCI ? 1 : 2

const useEmulator = androidDeviceMode === 'emulator'

Expand Down Expand Up @@ -113,6 +114,7 @@ const config = {
defaultRunner: 'android',
bridgeTimeout,
bundleStartTimeout,
platformReadyTimeout,
maxAppRestarts,
detectNativeCrashes: true,
resetEnvironmentBetweenTestFiles: true,
Expand Down
Loading