diff --git a/decnet_web/vite.config.ts b/decnet_web/vite.config.ts index 4a30a164..bebfca7d 100644 --- a/decnet_web/vite.config.ts +++ b/decnet_web/vite.config.ts @@ -15,11 +15,13 @@ export default defineConfig({ include: ['src/**/*.{ts,tsx}'], exclude: ['src/**/*.d.ts', 'src/test/**', 'src/main.tsx'], // Baseline floors. Each refactor PR raises these; never lower. + // Locked in after Phase 1 (AttackerDetail split: hook + 6 sections, + // 45 tests across 9 files): 7.78% lines, 5.35% branches. thresholds: { - lines: 0, - functions: 0, - branches: 0, - statements: 0, + lines: 7, + functions: 6, + branches: 5, + statements: 7, }, }, },