(name: string, options: FuzzRunOptions, body: FuzzBody)
| 175 | } |
| 176 | |
| 177 | export function fuzzTest(name: string, options: FuzzRunOptions, body: FuzzBody): void { |
| 178 | const label = options.label ?? name; |
| 179 | test(`${name} (${String(options.iterations)} iters, seed ${hexSeed(options.seed)})`, async () => { |
| 180 | await runFuzz({ ...options, label }, body); |
| 181 | }); |
| 182 | } |
| 183 | |
| 184 | export function createFuzzFaultPlan<T extends string>( |
| 185 | ctx: FuzzIterationContext, |
no test coverage detected