visreg-test
Version:
A visual regression testing solution that offers an easy setup with simple yet powerful customisation options, wrapped up in a convenient CLI runner to make assessing and accepting/rejecting diffs a breeze.
10 lines (9 loc) • 342 B
TypeScript
import { Command } from 'commander';
import { CliProgramChoices, ProgramChoices } from './types';
export type CliProgramChoicesExtended = CliProgramChoices & {
suites?: string;
allSuites?: boolean;
};
export declare const initialCwd: string;
export declare const program: Command;
export declare const programChoices: ProgramChoices;