()
| 91 | |
| 92 | it("handles single function", async () => { |
| 93 | const fn = async () => 42; |
| 94 | const options: ExecAsyncOptions = { concurrency: 1, delay: 0 }; |
| 95 | const results = await execAsync([fn], options); |
| 96 | expect(results).toEqual([42]); |
no outgoing calls
no test coverage detected