UNPKG

visual-diff-tool

Version:

Visual regression testing tool for comparing two URLs of the same app by capturing screenshots, performing pixel-by-pixel image comparisons, and highlighting visual differences. Ideal for detecting UI changes after deployments or updates.

8 lines (5 loc) 176 B
const VisualCompare = require('./visualCompare'); function visualCompare(url1, options = {}) { return new VisualCompare(url1, options); } module.exports = visualCompare;