[robo] Increase tests timeout

#ROBOMERGE-AUTHOR: james.hopkin
#ROBOMERGE-SOURCE: CL 20670970
#ROBOMERGE-BOT: (v955-20579017)

[CL 20671024 by james hopkin in ue5-main branch]
This commit is contained in:
james hopkin
2022-06-15 11:52:47 -04:00
parent 4570549036
commit 6c3a964c22
@@ -208,7 +208,7 @@ export type EdgeProperties = Partial<EdgeOptionFields> & {
to: string
}
const NUM_WAIT_INTERVALS = 20
const NUM_WAIT_INTERVALS = 25
export async function retryWithBackoff<T extends {}>(desc: string, f: (last: boolean) => Promise<T | null>): Promise<T> {
let sleepTime = .5
for (let safety = 0; safety < NUM_WAIT_INTERVALS; ++safety) {