@birhaus/test-utils
Version:
BIRHAUS Testing & Validation Framework - Comprehensive testing utilities for cognitive load, accessibility, and BIRHAUS principle compliance
18 lines (16 loc) • 475 B
text/typescript
/**
* BIRHAUS Visual Regression Testing
*
* Screenshot comparison and visual testing utilities
*/
interface VisualTestOptions {
threshold?: number;
screenshotPath?: string;
baselinePath?: string;
}
declare class VisualRegressionValidator {
constructor(_options?: VisualTestOptions);
compareScreenshots(): Promise<boolean>;
}
declare function expectVisualMatch(): void;
export { VisualRegressionValidator, type VisualTestOptions, expectVisualMatch };