mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-06-05 21:04:43 +08:00
11 lines
311 B
TypeScript
11 lines
311 B
TypeScript
import { fileURLToPath } from "node:url";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
root: fileURLToPath(new URL(".", import.meta.url)),
|
|
test: {
|
|
projects: ["packages/**/vitest.config.{ts,mts}"],
|
|
globalSetup: ["./packages/config/src/tests/globalSetup.ts"],
|
|
},
|
|
});
|