ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
16
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(api): add co-located test discovery, sequetial execution

byarielm.fyi 1709e880 fdacc4ee

verified
+5 -1
+5 -1
packages/api/vitest.config.ts
··· 4 4 test: { 5 5 globals: true, 6 6 environment: "node", 7 - include: ["__tests__/**/*.test.ts"], 7 + include: [ 8 + "__tests__/**/*.test.ts", // Integration tests 9 + "src/**/*.test.ts", // Co-located unit tests 10 + ], 8 11 setupFiles: ["__tests__/setup.ts"], 9 12 testTimeout: 30000, // 30s for API calls 13 + fileParallelism: false, // Run files sequentially - shared DB sessions 10 14 }, 11 15 });