mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-21 15:36:50 -05:00
* Add configuration files to make tests runnable in VS Code * Add default configs/fix tests when run from VS Code * Fix typo * Add release notes
12 lines
219 B
TypeScript
12 lines
219 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
include: ['src/**/*.test.(js|ts)'],
|
|
environment: 'node',
|
|
maxWorkers: 1,
|
|
isolate: false,
|
|
},
|
|
});
|