(value: string)
| 46 | }); |
| 47 | |
| 48 | function setExecPath(value: string) { |
| 49 | Object.defineProperty(process, 'execPath', { |
| 50 | value: value.split('/').join(sep), |
| 51 | configurable: true, |
| 52 | }); |
| 53 | } |
| 54 | |
| 55 | it('should suggest pnpm when the binary is installed via pnpm', async () => { |
| 56 | process.env.VERCEL_VC_NATIVE = '1'; |
no test coverage detected