diff --git a/Project.toml b/Project.toml index 5d433e0..858fab0 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SnapshotTesting" uuid = "cf213a48-8697-4c15-82cb-081f2086cf9e" authors = ["Nathan Daly and contributors"] -version = "0.1.0" +version = "0.1.1" [deps] DeepDiffs = "ab62b9b5-e342-54a8-a765-a90f495de1a6" diff --git a/src/snapshots.jl b/src/snapshots.jl index 6869f3f..3dd146c 100644 --- a/src/snapshots.jl +++ b/src/snapshots.jl @@ -62,6 +62,7 @@ function _recursive_diff_dirs(expected_dir, new_dir; allow_additions) new_content = read(new_path, String) @test new_content == expected_content if new_content != expected_content + println("Found non-matching content in `$file`.") display(DeepDiffs.deepdiff(expected_content, new_content)) end end