reachy-tales / vitest.config.app.ts
Nicolas Rabault
test(app): bridge transition unit tests with fake realtime client
b560e98
Raw
History Blame Contribute Delete
293 Bytes
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["tests/**/*.test.ts"],
environment: "node",
},
resolve: {
alias: {
"story-engine": new URL("./packages/story-engine/src/index.ts", import.meta.url).pathname,
},
},
});