// Package snapshot implements Go snapshot testing by writing expected test // results to files (a snapshot of the expected results) and comparing actual // test output against those files. If the actual test output differs from the // snapshot, the differences between the two are printed to the user for debugging. // // This package drew inspiration from github.com/bradleyjkemp/cupaloy/v2 while // using github.com/pmezard/go-difflib/difflib to retrieve and display diffs. package snapshot