Skip to content

Commit

Permalink
Fix some flaky tests for forced peer mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobmischka committed Dec 7, 2022
1 parent 5b3e781 commit 042b594
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/examples/basic/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,8 @@ const interval = new Interval({
},
logs: async (_, ctx) => {
for (let i = 0; i < 10; i++) {
ctx.log('Log number', i)
await ctx.log('Log number', i)
await sleep(500)
}
},
logTest: async (io, ctx) => {
Expand Down

0 comments on commit 042b594

Please sign in to comment.