From 3db3eac62a49d4ceea361f73e6faf52f45b83ab4 Mon Sep 17 00:00:00 2001 From: Aaron Date: Fri, 17 Apr 2026 11:55:51 -0500 Subject: [PATCH] chore: Increase PNPM test timeout --- packages/wxt/src/core/package-managers/__tests__/pnpm.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 8639542a..ab05424d 100644 --- a/packages/wxt/src/core/package-managers/__tests__/pnpm.test.ts +++ b/packages/wxt/src/core/package-managers/__tests__/pnpm.test.ts @@ -6,13 +6,13 @@ import { pnpm } from '../pnpm'; process.env.WXT_PNPM_IGNORE_WORKSPACE = 'true'; describe('PNPM Package Management Utils', () => { - describe('listDependencies', { timeout: 30e3 }, () => { + describe('listDependencies', () => { 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 }); - }); + }, 30e3); it('should list direct dependencies', async () => { const actual = await pnpm.listDependencies({ cwd });