UNPKG

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) 275 B
import { ConfigurationSettings } from './types'; type CliAssessmentArgs = { files: string[]; targetText: string; failed: boolean; visregConfig: ConfigurationSettings; }; export declare const assessInCLI: (args: CliAssessmentArgs) => Promise<void>; export {};