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,13 +1,20 @@
import { defineConfig } from 'vitest/config';
import path from 'path';
import * as path from 'path';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: [
// Companion-related smoke tests are excluded
],
exclude: [
'**/companion/**',
'**/*companion*.test.ts',
'tests/smoke/electron-init.smoke.test.ts',
'tests/smoke/browser-mode-toggle.smoke.test.ts',
'tests/smoke/di-container.test.ts',
'tests/smoke/electron-build.smoke.test.ts',
],
testTimeout: 10000,
hookTimeout: 10000,