Testing your app

Confirm your built site renders and its key flows work — before and after you ship.

Quick check

Ask the agent to test the app. It opens the built site in a headless browser and verifies that headings, text, and buttons render and that there are no console errors — a fast smoke test.

Behavioral checks

For a specific flow, describe it — "clicking Subscribe shows the success message" — and the agent runs a browser test that performs the steps and checks the result.

When to test

  • After a big change, before deploying.
  • For anything interactive — forms, filters, navigation.
  • As a habit on important projects.

Testing earns its keep on data and interaction. Static marketing pages usually just need a visual check on the canvas.

Next steps