feat(automation): implement NODE_ENV-based automation mode with fixture server

This commit is contained in:
2025-11-22 16:37:32 +01:00
parent d4fa7afc6f
commit 78fc323e43
8 changed files with 763 additions and 44 deletions

View File

@@ -1,6 +1,12 @@
import { defineConfig } from 'vitest/config';
import path from 'path';
export default defineConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, '.'),
},
},
test: {
globals: true,
environment: 'node',