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.
8 lines (7 loc) • 422 B
TypeScript
/// <reference types="node" />
/// <reference types="node" />
import { ProgramChoices } from '../types';
import { DiffObject } from '../diff-assessment-web';
import https = require('https');
export declare const getServer: () => https.Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>;
export declare const startServer: (programChoices: ProgramChoices, diffFiles?: DiffObject[]) => void;