Skip to content

Commit

Permalink
fix: ios streaming conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Jun 13, 2024
1 parent 5b234dd commit a78a928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/src/tests/test-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function isIos() {
return Platform.OS === 'ios'
}

export async function delayToPropogate(milliseconds = 1000): Promise<void> {
export async function delayToPropogate(milliseconds = 100): Promise<void> {
// delay avoid clobbering
return new Promise((r) => setTimeout(r, milliseconds))
}
Expand Down

0 comments on commit a78a928

Please sign in to comment.