UI Verify vs Chromatic
A Chromatic alternative built for agent-written UI: the same screenshot diffing, plus an AI judge that triages each change and MCP review from your coding agent.
Chromatic pioneered Storybook visual testing, and UI Verify does the same core job: render every state, diff it against a baseline, and gate the pull request on review. If you are looking for a Chromatic alternative, here is where the two differ, stated plainly.
What is the same
- Per-story screenshot capture in a real browser, diffed pixel by pixel against a per-branch baseline.
- A check and a comment on every pull request, with a review queue to accept or reject each change.
- Storybook as a first-class capture path - your existing stories are the tests.
- Skip-unchanged builds so a small PR does not re-render your whole Storybook.
What is different
- An AI judge triages every change. UI Verify labels each diff a likely regression or a likely intended change with a reason, so your queue is the handful that need a human - not a wall of expected diffs to click through. See the AI judge.
- Review from your coding agent over MCP. The diffs and verdicts are exposed over the Model Context Protocol, so Claude Code or Cursor can read a build and accept the intended changes without you opening a dashboard. See Triage with your agent.
- No Storybook required. UI Verify also captures real pages driven by Playwright via archive-replay, so you can visually test a Next.js app or a live staging URL, not just a component library. See the Playwright quickstart.
- Built for agent-written UI. The whole flow assumes an agent may have written the PR, and puts verification where the agent already works.
What about cost?
Both tools bill per rendered snapshot, so the lever is the same on either one: render fewer stories. Two patterns - dense gallery stories and data-driven states - cut a component's snapshot count up to 10x with the same coverage, and `--only-changed` skips the stories a PR does not touch. See Reduce visual test snapshots and cost and the write-up on cutting a Chromatic bill 10x.
Set up visual testing
From no visual tests to a green check on every pull request.
How to not spend a fortune on visual testing
Visual regression tools bill per snapshot, so story count is the bill. Two changes to how I write stories cut mine roughly 10x, same coverage, on Chromatic or any per-snapshot tool. Here they are.
Visual testing for agents
UI Verify captures your UI on every pull request and an AI judge tells an intended change from a real regression. See how it works.
Get started