-
|
I have this in a test: snapshots_signatures = snapshot()
def test_thing():
html = ...
snapshot_key = (..., ...)
assert outsource(html, suffix=".html") == snapshots_signatures[snapshot_key]I tried migrating to the new snapshots_signatures = external("uuid:.html")
def test_thing():
html = ...
snapshot_key = (..., ...)
assert html == snapshots_signatures[snapshot_key]...but I'm getting this error: Is there a way to migrate my current tests to the UUID protocol, or is this not possible for now? |
Beta Was this translation helpful? Give feedback.
Answered by
pawamoy
Jul 23, 2025
Replies: 1 comment 4 replies
-
|
Ah maybe I should just switch to |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Yaaaaaaaay it's looking great 🚀