Skip to content

Commit 2bd738f

Browse files
committed
Fix type
1 parent d93e0c1 commit 2bd738f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

__tests__/test-utils/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Sun Aug 04 2019 19:34:56 GMT-0700
22
const DEFAULT_TEST_TIME = Date.UTC(2019, 7, 5, 2, 34, 56, 78)
33

4-
export function timeoutPromise(ms: number): void {
4+
export function timeoutPromise(ms: number): Promise<void> {
55
return new Promise((resolve) => {
66
setTimeout(resolve, ms)
77
})

0 commit comments

Comments
 (0)