()
| 89 | }: FeaturesTestArgs) { |
| 90 | const disposables: (() => Promise<unknown> | undefined)[] = []; |
| 91 | const dispose = async () => { |
| 92 | await Promise.all(disposables.map(d => d())); |
| 93 | }; |
| 94 | |
| 95 | const cwd = process.cwd(); |
| 96 | const cliHost = await getCLIHost(cwd, loadNativeModule, true); |