import { describe, expect, it } from 'vitest' /** * Harness sanity check — confirms Vitest + happy-dom + auto-imports * are wired correctly. If this passes, real tests under * src/**\/__tests__/ can run without per-suite plumbing. * * Tracked: BACKLOG TECH-APP-VITEST closed by WS-6 sessie 3b. */ describe('vitest harness', () => { it('runs in happy-dom with globals', () => { expect(typeof window).toBe('object') expect(typeof document).toBe('object') }) it('truth holds', () => { expect(true).toBe(true) }) })