Skip to content

Commit 1e14ac5

Browse files
committed
add timeout for npm install
1 parent 9186604 commit 1e14ac5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/render/integrations/integrations.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ describe('integrations', () => {
9595

9696
beforeAll(() => {
9797
$('npm install', nextLocation);
98-
});
98+
}, 30_000);
9999

100100
describe('dev', () => {
101101
let devServer: child_process.ChildProcess | undefined;
@@ -198,7 +198,7 @@ describe('integrations', () => {
198198

199199
beforeAll(() => {
200200
$('npm install', viteLocation);
201-
});
201+
}, 30_000);
202202

203203
// The code being run after build has been modified by Vite and might run differently
204204
it('should not error when rendering in vite preview', async () => {

0 commit comments

Comments
 (0)