mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-04-06 15:30:30 +08:00
fix: Fix CLI tests failing due to pnpm.
This commit is contained in:
parent
91f36f9d0c
commit
d95524ad6b
@ -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',
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user