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 0ec547f commit fcf0b91Copy full SHA for fcf0b91
packages/tailwind/integrations/integrations.spec.ts
@@ -33,9 +33,13 @@ describe('integrations', () => {
33
},
34
);
35
36
- 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);
40
- });
+ test(
+ "Tailwind works on the Vite App's build process",
+ { timeout: 15_000 },
+ () => {
+ const viteAppLocation = path.resolve(integrationsLocation, 'vite');
41
+ $('npm install', viteAppLocation);
42
+ $('npm run build', viteAppLocation);
43
+ },
44
+ );
45
});
0 commit comments