mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-25 07:00:48 +09:00
15 lines
259 B
TypeScript
15 lines
259 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
import dotenv from 'dotenv'
|
|
|
|
dotenv.config()
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
include: [
|
|
'packages/**/*.test.ts',
|
|
],
|
|
env: process.env,
|
|
testTimeout: Infinity,
|
|
},
|
|
}) |