This commit is contained in:
2025-12-01 00:48:34 +01:00
parent 645f537895
commit e7ada8aa23
24 changed files with 866 additions and 438 deletions

View File

@@ -13,7 +13,12 @@ export default defineConfig({
globals: true,
environment: 'node',
include: ['tests/e2e/**/*.e2e.test.ts'],
exclude: RUN_REAL_AUTOMATION_SMOKE ? [] : ['tests/e2e/automation.e2e.test.ts'],
exclude: RUN_REAL_AUTOMATION_SMOKE
? ['tests/e2e/companion/companion-ui-full-workflow.e2e.test.ts']
: [
'tests/e2e/automation.e2e.test.ts',
'tests/e2e/companion/companion-ui-full-workflow.e2e.test.ts',
],
// E2E tests use real automation - set strict timeouts to prevent hanging
// Individual tests: 30 seconds max
testTimeout: 30000,