Skip to content

Commit 414117b

Browse files
authored
chore: Fix flakey test (#2254)
1 parent 799bd92 commit 414117b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • packages/wxt/src/core/package-managers/__tests__

packages/wxt/src/core/package-managers/__tests__/pnpm.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ import { pnpm } from '../pnpm';
66
process.env.WXT_PNPM_IGNORE_WORKSPACE = 'true';
77

88
describe('PNPM Package Management Utils', () => {
9-
describe('listDependencies', () => {
9+
describe('listDependencies', { timeout: 30e3 }, () => {
1010
const cwd = path.resolve(__dirname, 'fixtures/simple-pnpm-project');
11+
1112
beforeAll(async () => {
1213
// PNPM needs the modules installed, or 'pnpm ls' will return a blank list.
1314
await spawn('pnpm', ['install'], { cwd });

0 commit comments

Comments
 (0)