UNPKG

@stryker-mutator/core

Version:

The extendable JavaScript mutation testing framework

13 lines (10 loc) 386 B
import { CheckResult } from '@stryker-mutator/api/check'; import { Mutant } from '@stryker-mutator/api/core'; import { Resource } from '../concurrent/index.js'; export interface CheckerResource extends Resource { check( checkerName: string, mutant: Mutant[], ): Promise<Record<string, CheckResult>>; group(checkerName: string, mutants: Mutant[]): Promise<string[][]>; }