fix: Fix CLI tests failing due to pnpm.

This commit is contained in:
Sam 2022-09-10 18:23:10 +02:00
parent 91f36f9d0c
commit d95524ad6b
No known key found for this signature in database
GPG Key ID: D004126FCD1A6DF0

View File

@ -62,8 +62,8 @@ test('startUp, options empty', async () => {
},
lowdefyVersion: 'lowdefyVersion',
options: { cliConfig: true },
packageManager: 'npm',
packageManagerCmd: process.platform === 'win32' ? 'npm.cmd' : 'npm',
packageManager: context.packageManager,
packageManagerCmd: context.packageManagerCmd,
print,
sendTelemetry: 'sendTelemetry',
});
@ -109,8 +109,8 @@ test('startUp, options undefined', async () => {
},
lowdefyVersion: 'lowdefyVersion',
options: { cliConfig: true },
packageManager: 'npm',
packageManagerCmd: process.platform === 'win32' ? 'npm.cmd' : 'npm',
packageManager: context.packageManager,
packageManagerCmd: context.packageManagerCmd,
print,
sendTelemetry: 'sendTelemetry',
});
@ -158,8 +158,8 @@ test('startUp, options configDirectory', async () => {
cliConfig: true,
configDirectory: './configDirectory',
},
packageManager: 'npm',
packageManagerCmd: process.platform === 'win32' ? 'npm.cmd' : 'npm',
packageManager: context.packageManager,
packageManagerCmd: context.packageManagerCmd,
print,
sendTelemetry: 'sendTelemetry',
});
@ -188,8 +188,8 @@ test('startUp, no lowdefyVersion returned', async () => {
},
lowdefyVersion: undefined,
options: {},
packageManager: 'npm',
packageManagerCmd: process.platform === 'win32' ? 'npm.cmd' : 'npm',
packageManager: context.packageManager,
packageManagerCmd: context.packageManagerCmd,
print,
sendTelemetry: 'sendTelemetry',
});