desktop: run tests sequentially

this is required since each test builds a new app and on linux & windows that
can cause issues if done in parallel
This commit is contained in:
Abdullah Atta
2025-07-19 11:02:32 +05:00
parent fe1e3bb847
commit ec48f2350d

View File

@@ -23,7 +23,7 @@ export default defineConfig({
test: {
testTimeout: process.env.CI ? 120 * 1000 : 120 * 1000,
sequence: {
concurrent: true,
concurrent: false,
shuffle: true
},
dir: "./__tests__/",