Skip to content

Commit f3503ce

Browse files
fix(test): explicitly added fileParallelism: false to prevent flakiness in ci test pipeline (#1668)
Co-authored-by: Bill Glesias <[email protected]>
1 parent 51b476a commit f3503ce

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export default defineConfig(({ mode }) => {
4040
environment: "jsdom",
4141
setupFiles: "./src/setup-tests.js",
4242
exclude: ["node_modules", "cypress", "dist"],
43+
fileParallelism: false, // #1666: Run tests sequentially to avoid race conditions with shared database.json file.
4344
},
4445
};
4546
});

0 commit comments

Comments
 (0)