logos-storage-js/vitest.config.js

10 lines
217 B
JavaScript
Raw Normal View History

2025-05-30 12:58:16 +02:00
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
// run tests sequentially, not in parallel
// number of workers set to 1 disables parallelism
maxThreads: 1,
},
});