diff options
Diffstat (limited to 'internal/testutil/golden.go')
-rw-r--r-- | internal/testutil/golden.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/testutil/golden.go b/internal/testutil/golden.go index 2aaad5ce..15ac095f 100644 --- a/internal/testutil/golden.go +++ b/internal/testutil/golden.go @@ -29,6 +29,7 @@ func Update(name string) bool { // the golden file on-demand. It does nothing when the runtime is "windows". func AssertGolden(t testing.TB, path string, update bool, got interface{}) { if runtime.GOOS == "windows" { + t.Skip("Skipping testing on Windows") return } |