remove companion tests

This commit is contained in:
2026-01-03 15:18:40 +01:00
parent 20f1b53c27
commit afbe42b0e1
67 changed files with 72 additions and 6325 deletions

View File

@@ -1,5 +1,5 @@
import { defineConfig } from 'vitest/config';
import path from 'path';
import * as path from 'path';
/**
* E2E Test Configuration
@@ -12,6 +12,11 @@ export default defineConfig({
globals: true,
environment: 'node',
include: ['tests/e2e/**/*.e2e.test.ts'],
exclude: [
'**/companion/**',
'**/*companion*.e2e.test.ts',
'tests/e2e/companion/**',
],
// E2E tests use real automation - set strict timeouts to prevent hanging
// Individual tests: 30 seconds max
testTimeout: 30000,