()
| 55 | describe('readWithTimeout', () => { |
| 56 | it('resolves to file contents when readFile resolves in time', async () => { |
| 57 | const readFile: Parameters<typeof readWithTimeout>[1] = async () => 'hello'; |
| 58 | const result = await readWithTimeout('/fake', readFile, 100); |
| 59 | expect(result).to.equal('hello'); |
| 60 | }); |
no outgoing calls
no test coverage detected