mirror of
https://github.com/moeru-ai/airi.git
synced 2026-04-26 13:40:42 +00:00
Some checks are pending
CI / Lint (push) Waiting to run
CI / Build Test (stage-tamagotchi) (push) Waiting to run
CI / Build Test (stage-web) (push) Waiting to run
CI / Build Test (ui-loading-screens) (push) Waiting to run
CI / Build Test (ui-transitions) (push) Waiting to run
CI / Type Check (push) Waiting to run
CI / Check Provenance (push) Waiting to run
Cloudflare Workers / Deploy - stage-web (push) Waiting to run
Update Nix pnpmDeps Hash / update (push) Waiting to run
22 lines
572 B
TypeScript
22 lines
572 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: [
|
|
'apps/server',
|
|
'apps/ui-server-auth',
|
|
'apps/stage-tamagotchi',
|
|
'packages/audio-pipelines-transcribe',
|
|
'packages/cap-vite',
|
|
'packages/vishot-runner-browser',
|
|
'packages/plugin-sdk',
|
|
'packages/plugin-sdk-tamagotchi',
|
|
'packages/server-runtime',
|
|
'packages/server-sdk',
|
|
'packages/stage-shared',
|
|
'packages/stage-ui',
|
|
'packages/vishot-runtime',
|
|
'packages/vite-plugin-warpdrive',
|
|
],
|
|
},
|
|
})
|