mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-22 00:13:45 -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
233 B
TypeScript
12 lines
233 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
include: ['**/*.test.(js|ts)', '**/__tests__/*'],
|
|
environment: 'node',
|
|
maxWorkers: 1,
|
|
isolate: false,
|
|
},
|
|
});
|