mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-18 22:09:30 -04:00
* feat(runtime): start and ship the local agent * refactor: gate local agent behind feature flag * chore: skip agent manager if flag is false * fix: hot reload agents * test: fix config tests
14 lines
225 B
TypeScript
14 lines
225 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "node",
|
|
server: {
|
|
deps: {
|
|
inline: ["zod"],
|
|
},
|
|
},
|
|
include: ["src/**/*.test.ts", "src/**/*.spec.ts"],
|
|
},
|
|
});
|