ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
1import { defineConfig } from "vitest/config";
2
3export default defineConfig({
4 test: {
5 globals: true,
6 environment: "node",
7 include: [
8 "__tests__/**/*.test.ts", // Integration tests
9 "src/**/*.test.ts", // Co-located unit tests
10 ],
11 setupFiles: ["__tests__/setup.ts"],
12 testTimeout: 30000, // 30s for API calls
13 fileParallelism: false, // Run files sequentially - shared DB sessions
14 },
15});