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 0315882 commit 3db3eacCopy full SHA for 3db3eac
packages/wxt/src/core/package-managers/__tests__/pnpm.test.ts
@@ -6,13 +6,13 @@ import { pnpm } from '../pnpm';
6
process.env.WXT_PNPM_IGNORE_WORKSPACE = 'true';
7
8
describe('PNPM Package Management Utils', () => {
9
- describe('listDependencies', { timeout: 30e3 }, () => {
+ describe('listDependencies', () => {
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 });
15
- });
+ }, 30e3);
16
17
it('should list direct dependencies', async () => {
18
const actual = await pnpm.listDependencies({ cwd });
0 commit comments