import { describe, it, expect } from 'vitest'; import fc from 'fast-check'; import { VERSION } from '../index.js'; describe('project skeleton smoke test', () => { it('exposes the package version', () => { expect(VERSION).toBe('0.1.0'); }); it('runs fast-check property tests with the configured iteration count', () => { // Verify the global fast-check config applies at least 100 iterations. expect(fc.readConfigureGlobal()?.numRuns).toBe(100); // A trivial always-true property to confirm fast-check is wired up. fc.assert( fc.property(fc.integer(), fc.integer(), (a, b) => { return a + b === b + a; }), ); }); });