We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 799bd92 commit 414117bCopy full SHA for 414117b
1 file changed
packages/wxt/src/core/package-managers/__tests__/pnpm.test.ts
@@ -6,8 +6,9 @@ import { pnpm } from '../pnpm';
6
process.env.WXT_PNPM_IGNORE_WORKSPACE = 'true';
7
8
describe('PNPM Package Management Utils', () => {
9
- describe('listDependencies', () => {
+ describe('listDependencies', { timeout: 30e3 }, () => {
10
const cwd = path.resolve(__dirname, 'fixtures/simple-pnpm-project');
11
+
12
beforeAll(async () => {
13
// PNPM needs the modules installed, or 'pnpm ls' will return a blank list.
14
await spawn('pnpm', ['install'], { cwd });
0 commit comments