Depends on: #22
What to build
Define a fixture factory interface and implement deterministic Small/Medium/Large fixtures for each workspace (array, date, function, math, object, text). Each workspace exposes a fixtures.ts module with a factory that generates consistent test data for benchmarking.
Acceptance criteria
Out of scope
- Using fixtures in actual benchmarks
- Auto-generation
Depends on: #22
What to build
Define a fixture factory interface and implement deterministic Small/Medium/Large fixtures for each workspace (array, date, function, math, object, text). Each workspace exposes a
fixtures.tsmodule with a factory that generates consistent test data for benchmarking.Acceptance criteria
interface FixtureFactory { small(): unknown, medium(): unknown, large(): unknown }Out of scope