gitlab.com/evatix-go/core@v1.3.55/coretests/SkipOnWindows.go (about) 1 package coretests 2 3 import ( 4 "testing" 5 6 "gitlab.com/evatix-go/core/errcore" 7 "gitlab.com/evatix-go/core/osconsts" 8 ) 9 10 // SkipOnWindows Skip on Windows 11 func SkipOnWindows(t *testing.T) { 12 if osconsts.IsWindows { 13 t.Skip(errcore.WindowsIgnoreType) 14 } 15 }