mirror of
https://github.com/openclaw/clawhub.git
synced 2026-08-14 08:52:21 +00:00
12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['e2e/**/*.e2e.test.ts'],
|
|
exclude: ['**/node_modules/**', '**/dist/**', '**/coverage/**', '**/convex/_generated/**'],
|
|
testTimeout: 60_000,
|
|
hookTimeout: 60_000,
|
|
},
|
|
})
|