UNPKG

askui

Version:

Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on

14 lines (13 loc) 474 B
import { SnapshotDetailLevel } from './snapshot-detail-level'; export interface ReporterConfig { /** * default: onFailure; makes step run slower */ withScreenshots?: SnapshotDetailLevel; /** * overrides withScreenshot if higher level of detail as screenshot * is required for detecting elements; * incurres additional cost; default: onFailure; makes step run slower */ withDetectedElements?: SnapshotDetailLevel; }