Files
coolify/vitest.config.ts
Andras Bacsai 51ed86fe63 feat(v5): add coold restart action
Add the V5 server endpoint and UI action to restart coold over SSH with
a fresh host token, plus Flux reconnect handling and coverage for the
new backend, browser, and canvas test suites.
2026-07-06 22:30:50 +02:00

15 lines
357 B
TypeScript

import { fileURLToPath } from 'node:url';
import { defineConfig } from 'vitest/config';
export default defineConfig({
resolve: {
alias: {
'@': fileURLToPath(new URL('./resources/js/v5', import.meta.url)),
},
},
test: {
environment: 'node',
include: ['resources/js/v5/**/*.test.{ts,tsx}'],
},
});