Skip to content

Commit 0ec547f

Browse files
committed
chore(tailwind): Increase timeout for integration tests
1 parent 58bd41f commit 0ec547f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/tailwind/integrations/integrations.spec.ts

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

2626
test(
2727
"Tailwind works on the Next App's build process",
28-
{ timeout: 15_000 },
28+
{ timeout: 35_000 },
2929
() => {
3030
const nextAppLocation = path.resolve(integrationsLocation, 'nextjs');
3131
$('npm install', nextAppLocation);
3232
$('npm run build', nextAppLocation);
3333
},
3434
);
3535

36-
test("Tailwind works on the Vite App's build process", () => {
36+
test("Tailwind works on the Vite App's build process", { timeout: 15_000 }, () => {
3737
const viteAppLocation = path.resolve(integrationsLocation, 'vite');
3838
$('npm install', viteAppLocation);
3939
$('npm run build', viteAppLocation);

0 commit comments

Comments
 (0)