diff --git a/packages/wxt/src/core/package-managers/__tests__/pnpm.test.ts b/packages/wxt/src/core/package-managers/__tests__/pnpm.test.ts index 2ae4c56e..8639542a 100644 --- a/packages/wxt/src/core/package-managers/__tests__/pnpm.test.ts +++ b/packages/wxt/src/core/package-managers/__tests__/pnpm.test.ts @@ -6,8 +6,9 @@ import { pnpm } from '../pnpm'; process.env.WXT_PNPM_IGNORE_WORKSPACE = 'true'; describe('PNPM Package Management Utils', () => { - describe('listDependencies', () => { + describe('listDependencies', { timeout: 30e3 }, () => { const cwd = path.resolve(__dirname, 'fixtures/simple-pnpm-project'); + beforeAll(async () => { // PNPM needs the modules installed, or 'pnpm ls' will return a blank list. await spawn('pnpm', ['install'], { cwd });