mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 14:48:41 +00:00
37 lines
936 B
TypeScript
37 lines
936 B
TypeScript
import { resolve } from 'node:path'
|
|
import { defineConfig } from 'vitest/config'
|
|
|
|
const timeout = process.env.PWDEBUG ? Infinity : process.env.CI ? 50000 : 30000
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'~utils': resolve(__dirname, './playground/test-utils'),
|
|
},
|
|
},
|
|
test: {
|
|
include: ['./playground/**/*.spec.[tj]s'],
|
|
setupFiles: ['./playground/vitestSetup.ts'],
|
|
globalSetup: ['./playground/vitestGlobalSetup.ts'],
|
|
testTimeout: timeout,
|
|
hookTimeout: timeout,
|
|
reporters: 'dot',
|
|
deps: {
|
|
// Prevent Vitest from running the workspace packages in Vite's SSR runtime
|
|
moduleDirectories: ['node_modules', 'packages'],
|
|
},
|
|
onConsoleLog(log) {
|
|
if (
|
|
log.match(
|
|
/experimental|jit engine|emitted file|tailwind|The CJS build of Vite/i,
|
|
)
|
|
)
|
|
return false
|
|
},
|
|
},
|
|
esbuild: {
|
|
target: 'node18',
|
|
},
|
|
publicDir: false,
|
|
})
|