mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
* Fix version bump logic to work if the month has rolled over * Refactor script to be more testable * Add tests for regression * Move tests to dedicated package * Add release notes * Coderabbit
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
include: ['src/**/*.test.(js|jsx|ts|tsx)'],
|
|
environment: 'node',
|
|
},
|
|
});
|