mirror of
https://github.com/logos-storage/logos-storage-js.git
synced 2026-01-02 13:33:07 +00:00
10 lines
217 B
JavaScript
10 lines
217 B
JavaScript
|
|
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,
|
||
|
|
},
|
||
|
|
});
|