Snapshot Tests Skill
Workflow for recording and validating swift-snapshot-testing snapshots in the SwiftStreamingMarkdown package.
When to use this skill
Trigger when the user asks anything that resolves to one of:
- Record — "record snapshots", "re-record the snapshots", "update snapshots", "regenerate references" → use Mode 1.
- Validate — "validate snapshots", "run snapshot tests", "check snapshots for regressions", "diff the failed snapshots" → use Mode 2.
If the request is ambiguous (e.g. "fix the snapshot tests"), validate first (Mode 2) and only re-record after the user confirms the visual changes are intentional.
Repo context
| Thing | Location |
|---|---|
| Base class for every snapshot test | Tests/MarkdownTextTests/SnapshotTestFoundation/SnapshotTestCase.swift |
| Recording toggle (committed commented out) | line 18 of that file: // isRecording = true |
| Diff-tool configuration | SnapshotTesting.diffTool = "diff-image" in setUp() (line 17) |
| Reference PNGs | Tests/MarkdownTextTests/__Snapshots__/<TestClass>/ |
| Failed PNGs (written by the test run) | DerivedData; their absolute paths show up in failure messages |
Because diffTool is the string "diff-image", swift-snapshot-testing
formats every failure message with a literal line shaped exactly like:
diff-image <reference-png-path> <failed-png-path>
That is the hook this skill keys off of.
Build command
xcodebuild test \
-scheme SwiftStreamingMarkdown \
-destination "platform=iOS Simulator,OS=26.4.1,name=iPhone 17" \
-skipMacroValidation 2>&1 | tee /tmp/snapshot-tests.log
Always tee to a log file — the Mode 2 grep below depends on it.
If the iPhone 17 / iOS 26.4.1 destination is unavailable on the
developer's machine, list installed simulators with
xcrun simctl list devices available | head -30 and substitute an
equivalent iOS Simulator destination.
Mode 1: record snapshots
- Uncomment the recording flag:
sed -i '' 's|// isRecording = true|isRecording = true|' \ Tests/MarkdownTextTests/SnapshotTestFoundation/SnapshotTestCase.swift - Verify the toggle:
Expect a single hit withgrep -n "isRecording" Tests/MarkdownTextTests/SnapshotTestFoundation/SnapshotTestCase.swiftisRecording = trueand no leading//. - Run the tests using the build command above. Every snapshot test will fail — recording mode always emits a failure after it writes the new reference PNG. This is expected; do not treat it as an error.
- Restore the comment — always, even if step 3 errored out:
sed -i '' 's|^\([[:space:]]*\)isRecording = true|\1// isRecording = true|' \ Tests/MarkdownTextTests/SnapshotTestFoundation/SnapshotTestCase.swift - Re-verify:
Should once again showgrep -n "isRecording" Tests/MarkdownTextTests/SnapshotTestFoundation/SnapshotTestCase.swift// isRecording = true. - Report to the user:
Summarise which reference PNGs were added or changed, and remind the user to eyeball the diff before committing — recording overwrites references blindly, including wrong renders.git status Tests/MarkdownTextTests/__Snapshots__/
Platform coverage: iOS records locally, macOS does not
A local xcodebuild ... -destination "platform=iOS Simulator,..." run only
regenerates the iOS variants (iPhone16-*, iPadPro11-*,
iPadPro11Landscape-*). The macOS variants (macOS-standard-light,
macOS-standard-dark) are not produced by that run.
Do not record macOS references on a developer machine. The macOS
variants use a strict perceptualPrecision: 1.0, so even a one-off
subpixel/font-rendering difference between a local macOS version and the CI
runner's macOS version fails validation. Locally-recorded macOS PNGs will
almost always mismatch CI.
macOS references are recorded by the dedicated Record macOS Snapshots
workflow (.github/workflows/record-macos-snapshots.yml), a
workflow_dispatch job on runs-on: macos-26. It flips isRecording on,
deletes the existing *macOS*.png references, re-records them with
-destination "platform=macOS", and uploads the fresh PNGs as the
macos-snapshots artifact. (The record step's continue-on-error: true
means the run reports success even though xcodebuild test exits non-zero in
record mode.)
Note the workflow re-records the entire macOS suite, so the artifact
contains every *.macOS-standard-*.png — copy back only the files your
change actually affects, so you don't churn unrelated references against a
possibly-different runner rendering.
When the branch lives in microsoft/SwiftStreamingMarkdown
- Push your branch (with re-recorded iOS references) to
origin. - Run the workflow against it:
gh workflow run "Record macOS Snapshots" --ref <branch> gh run watch "$(gh run list --workflow 'Record macOS Snapshots' \ --branch <branch> --limit 1 --json databaseId -q '.[0].databaseId')" \ --exit-status - Download the artifact and copy only the affected PNGs into place:
gh run download <run-id> -n macos-snapshots -D /tmp/macos-snaps cp /tmp/macos-snaps/<TestMethod>.macOS-standard-*.png \ Tests/MarkdownTextTests/__Snapshots__/<TestClass>/ - Eyeball the PNGs, commit, and push.
When the branch lives on a fork (cross-repo PR)
workflow_dispatch only lists branches that exist in
microsoft/SwiftStreamingMarkdown; a fork PR's head branch is not
selectable, and the base repo cannot dispatch a workflow against a fork
branch. Mirror the branch onto origin first (requires write access to the
base repo — e.g. a maintainer updating a contributor's PR):
- Check out the PR branch locally (
gh pr checkout <pr-number>) and push a temporary mirror toorigin:git push origin <local-branch>:pr-<n>-macos-record - Run
Record macOS Snapshotsagainstpr-<n>-macos-record(samegh workflow run/gh run watchas above). The mirror carries the same code state, so the recorded PNGs match the PR's rendering. - Download the
macos-snapshotsartifact and copy only the affected PNGs over the references in your local PR-branch working tree. - Eyeball, commit, and
git pushto the fork PR branch (the local branch already tracks the fork viagh pr checkout). - Delete the temporary mirror:
git push origin --delete pr-<n>-macos-record
So the normal flow for a rendering change is: record iOS locally, push, then
backfill the affected macOS references from the Record macOS Snapshots
workflow artifact in a follow-up commit.
Mode 2: validate snapshots
- Run the test suite using the build command above (with the
| tee /tmp/snapshot-tests.log). - If the log ends with
** TEST SUCCEEDED **, report success and stop. - Otherwise, extract every diff command from the log:
Each line isgrep -E "^diff-image " /tmp/snapshot-tests.log | sort -udiff-image <reference-png> <failed-png>. Reference paths sit under…/__Snapshots__/<TestClass>/<testMethod>.<variant>.png; failed paths sit under DerivedData. - Identify failing tests — also grep the log for test method names
so the report links each diff back to its source test:
grep -E "Test Case .* failed" /tmp/snapshot-tests.log | sort -u - Present each pair to the user:
- Use the
viewtool to open both PNGs inline so the user sees them in the chat. - Print the literal
diff-image …command verbatim so the user can reproduce the side-by-side comparison locally.
- Use the
- After showing all diffs, ask whether to:
- re-record (switch to Mode 1), or
- investigate the rendering regression in source.
Safety rules
- Never commit
SnapshotTestCase.swiftwithisRecording = trueuncommented. Make the post-Mode-1 grep mandatory; if the working tree contains the uncommented form, restore it before any commit. xcodebuild testexits non-zero in recording mode. That is not a build failure; do not retry or escalate.- The diff-image line emitted by swift-snapshot-testing does not
quote its paths. Paths in this repo never contain spaces, so a simple
grep/ shell tokenisation is safe; do not introduce paths with spaces inTests/MarkdownTextTests/__Snapshots__/. - Reference PNGs are binary — never edit them by hand; always regenerate via Mode 1.