Skip to main content
Golden files are the source of truth for snapshot-based steps like Visual diff. By default they’re stored on the dashboard; opt into local storage to keep them alongside your tests.

Enable local storage

  1. In your Visual diff step, omit the screenshot key so Momentic stores the snapshot locally:
  2. Snapshots are written to <momentic-root>/golden/visual-diff/<command-id>.jpg by default. The command ID is the internal identifier minted from the step’s position in the test:
  3. (Optional) Override the directory via goldenFileDir in momentic.config.yaml:
    momentic.config.yaml

Update snapshots

--update-golden-files makes snapshot-based tests pass even when the current state differs from the stored snapshot. Use it intentionally.

Colocate snapshots with tests

Point the screenshot.data field at a path relative to the Momentic root:
Resulting layout:

Mobile

On mobile, visualDiff always stores golden files locally. The golden path is part of the step:
path resolves relative to the test or module file the step is defined in (the same rule used by module and JavaScript file references), so a visualDiff inside a module always resolves against the module’s location no matter which test includes it. The golden is created on the first run and the step passes. On later runs the full-screen screenshot is compared against the golden and the step fails if it differs by more than threshold. Refresh goldens after an intentional UI change with --update-golden-files. Mobile visualDiff is only available when running tests locally with the CLI.