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 d6fdfdf commit 081264dCopy full SHA for 081264d
packages/weapp-tailwindcss/test/vite.test.ts
@@ -1,13 +1,14 @@
1
import tailwindcss from '@tailwindcss/postcss'
2
import twv from '@tailwindcss/vite'
3
+import { isCI } from 'ci-info'
4
import fs from 'fs-extra'
5
import path from 'pathe'
6
import { build } from 'vite'
7
import { UnifiedViteWeappTailwindcssPlugin } from '@/vite'
8
import { fixturesRootPath } from './util'
9
10
describe('vite', () => {
- it('v4-vite-plugin', async () => {
11
+ it.skipIf(isCI)('v4-vite-plugin', async () => {
12
await build({
13
root: path.resolve(fixturesRootPath, 'v4-vite-plugin'),
14
plugins: [
0 commit comments