mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-21 05:39:15 -05:00
14 lines
258 B
TypeScript
14 lines
258 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: ["./packages/*", "./test", "./e2e/*"],
|
|
},
|
|
ssr: {
|
|
resolve: {
|
|
// we resolve from source files for unit testing
|
|
conditions: ["dev-source"],
|
|
},
|
|
},
|
|
});
|