(ms: number)
| 5 | describe('13_saga', () => { |
| 6 | const port = process.env.PORT || '8080'; |
| 7 | const sleep = (ms: number) => |
| 8 | new Promise((r) => { |
| 9 | setTimeout(r, ms); |
| 10 | }); |
| 11 | |
| 12 | it('should work with recorded events', async () => { |
| 13 | // eslint-disable-next-line import/no-named-as-default-member |
no outgoing calls
no test coverage detected
searching dependent graphs…