mirror of
https://github.com/moeru-ai/airi.git
synced 2026-08-14 08:52:42 +00:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
25 lines
626 B
TypeScript
25 lines
626 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: [
|
|
'server/apps/auth',
|
|
'server/apps/api',
|
|
'apps/ui-server-auth',
|
|
'apps/stage-tamagotchi',
|
|
'packages/cap-vite',
|
|
'packages/ccc',
|
|
'packages/core-agent',
|
|
'packages/i18n',
|
|
'packages/better-ws',
|
|
'packages/plugin-sdk',
|
|
'packages/plugin-sdk-tamagotchi',
|
|
'packages/scenarios-stage-tamagotchi-browser',
|
|
'packages/scenarios-stage-tamagotchi-electron',
|
|
'packages/server-runtime',
|
|
'packages/server-sdk',
|
|
'packages/stage-shared',
|
|
],
|
|
},
|
|
})
|