import { describe, expect, it } from 'vitest'; describe('integration test harness', () => { it('provides modern Node globals', () => { expect(typeof globalThis.structuredClone).toBe('function'); }); });