Files
convex-monorepo/apps/next/tests/integration/smoke.test.ts
T

8 lines
212 B
TypeScript

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