We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0136eb3 commit 64b8c62Copy full SHA for 64b8c62
exercises/03.async/01.solution.await/setup.ts
@@ -4,7 +4,7 @@ interface Assertions {
4
5
declare global {
6
var expect: (actual: unknown) => Assertions
7
- var test: (title: string, callback: () => void) => void
+ var test: (title: string, callback: () => void | Promise<void>) => void
8
var beforeAll: (callback: () => void) => void
9
var afterAll: (callback: () => void) => void
10
}
0 commit comments