@shipfox/api-auth 3.0.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +11 -0
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +5 -5
- package/tsconfig.build.tsbuildinfo +1 -1
- package/vitest.config.ts +3 -0
package/vitest.config.ts
CHANGED
|
@@ -3,6 +3,9 @@ import {defineConfig, type UserConfigExport} from '@shipfox/vitest';
|
|
|
3
3
|
export default defineConfig(
|
|
4
4
|
{
|
|
5
5
|
test: {
|
|
6
|
+
// Test files share real PostgreSQL tables, including opportunistic rate-limit pruning.
|
|
7
|
+
// Keep files serial so one file cannot delete or lock another file's fixtures.
|
|
8
|
+
fileParallelism: false,
|
|
6
9
|
globalSetup: ['test/globalSetup.ts'],
|
|
7
10
|
setupFiles: ['test/setup.ts'],
|
|
8
11
|
},
|