- Add "packages/branding" to root vitest.config.ts projects array - Enables pnpm vitest run --project "@paperclipai/branding" from repo root
15 lines
289 B
TypeScript
15 lines
289 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: [
|
|
"packages/db",
|
|
"packages/adapters/codex-local",
|
|
"packages/adapters/opencode-local",
|
|
"server",
|
|
"ui",
|
|
"cli",
|
|
"packages/branding",
|
|
],
|
|
},
|
|
});
|