- New mission-control Next.js app: runbook catalog, GO execution, SSE stream, audit ZIP export - Generated doc-manifest from docs runbooks; curated JSON specs; health-check script - pnpm workspace package, root scripts, README updates - Resilience: Windows-safe path checks, optional MISSION_CONTROL_PROJECT_ROOT fallback, system fonts - Bump mcp-proxmox submodule to tracked main Made-with: Cursor
23 lines
504 B
TypeScript
23 lines
504 B
TypeScript
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
const root = fileURLToPath(new URL('.', import.meta.url));
|
|
const monorepoRoot = path.resolve(root, '..');
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['src/**/*.test.ts'],
|
|
testTimeout: 60_000,
|
|
env: {
|
|
MISSION_CONTROL_PROJECT_ROOT: monorepoRoot,
|
|
},
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(root, 'src'),
|
|
},
|
|
},
|
|
});
|