mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-22 00:13:45 -05:00
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
export default {
|
|
test: {
|
|
exclude: ['**/node_modules/**', '**/dist/**', '**/build/**'],
|
|
globalSetup: ['./vitest.globalSetup.js'],
|
|
globals: true,
|
|
coverage: {
|
|
enabled: false,
|
|
},
|
|
maxWorkers: 2,
|
|
},
|
|
};
|