Skip to content

Commit

Permalink
Specify sleep type
Browse files Browse the repository at this point in the history
  • Loading branch information
gagik committed Oct 7, 2024
1 parent 3081497 commit 0417c4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/e2e-tests/test/util-helpers.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export function sleep(ms: number) {
export function sleep(ms: number): Promise<void> {
return new Promise((resolve) => setTimeout(resolve, ms));
}

0 comments on commit 0417c4a

Please sign in to comment.