( name: string, fn: () => void | Promise<void>, )
| 49 | ); |
| 50 | |
| 51 | function test( |
| 52 | name: string, |
| 53 | fn: () => void | Promise<void>, |
| 54 | ): ReturnType<typeof nodeTest> { |
| 55 | return nodeTest(name, { concurrency: false }, fn); |
| 56 | } |
| 57 | |
| 58 | afterEach(() => { |
| 59 | for (const dir of tempDirs.splice(0)) { |
no outgoing calls
no test coverage detected