(...args: any[])
| 686 | await readyResolver; |
| 687 | |
| 688 | const helperTestPath = async (...args: any[]) => { |
| 689 | if (!skipDeploy) { |
| 690 | // @ts-ignore |
| 691 | await testPath(false, `https://${deploymentUrl}`, ...args); |
| 692 | } |
| 693 | // @ts-ignore |
| 694 | await testPath(true, `http://localhost:${port}`, ...args); |
| 695 | }; |
| 696 | await fn(helperTestPath, port); |
| 697 | } finally { |
| 698 | // @ts-ignore |
nothing calls this directly
no test coverage detected