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 58bd41f commit 0ec547fCopy full SHA for 0ec547f
packages/tailwind/integrations/integrations.spec.ts
@@ -25,15 +25,15 @@ describe('integrations', () => {
25
26
test(
27
"Tailwind works on the Next App's build process",
28
- { timeout: 15_000 },
+ { timeout: 35_000 },
29
() => {
30
const nextAppLocation = path.resolve(integrationsLocation, 'nextjs');
31
$('npm install', nextAppLocation);
32
$('npm run build', nextAppLocation);
33
},
34
);
35
36
- test("Tailwind works on the Vite App's build process", () => {
+ test("Tailwind works on the Vite App's build process", { timeout: 15_000 }, () => {
37
const viteAppLocation = path.resolve(integrationsLocation, 'vite');
38
$('npm install', viteAppLocation);
39
$('npm run build', viteAppLocation);
0 commit comments