Skip to content

Commit 58bd41f

Browse files
authored
chore(root): Upgrade vitest to 3.1.1 (#2067)
1 parent 68a4939 commit 58bd41f

File tree

5 files changed

+209
-187
lines changed

5 files changed

+209
-187
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"tsup": "8.2.4",
2828
"turbo": "2.3.1",
2929
"vite": "5.4.14",
30-
"vitest": "2.1.9"
30+
"vitest": "3.1.1"
3131
},
3232
"pnpm": {
3333
"overrides": {

packages/tailwind/integrations/integrations.spec.ts

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,15 @@ describe('integrations', () => {
2323

2424
const integrationsLocation = __dirname;
2525

26-
test("Tailwind works on the Next App's build process", () => {
27-
const nextAppLocation = path.resolve(integrationsLocation, 'nextjs');
28-
$('npm install', nextAppLocation);
29-
$('npm run build', nextAppLocation);
30-
});
26+
test(
27+
"Tailwind works on the Next App's build process",
28+
{ timeout: 15_000 },
29+
() => {
30+
const nextAppLocation = path.resolve(integrationsLocation, 'nextjs');
31+
$('npm install', nextAppLocation);
32+
$('npm run build', nextAppLocation);
33+
},
34+
);
3135

3236
test("Tailwind works on the Vite App's build process", () => {
3337
const viteAppLocation = path.resolve(integrationsLocation, 'vite');

packages/tailwind/integrations/nextjs/package-lock.json

Lines changed: 105 additions & 105 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)