We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7bbd73 commit 74ba177Copy full SHA for 74ba177
internal/system/system_test.go
@@ -367,6 +367,10 @@ func TestDefaultsManager(t *testing.T) {
367
}
368
369
func TestDefaultsManagerCompareDefaults(t *testing.T) {
370
+ if !IsMacOS() {
371
+ t.Skip("Skipping defaults test on non-macOS platform")
372
+ }
373
+
374
tmpDir := t.TempDir()
375
manager := NewDefaultsManager(tmpDir, false, false)
376
@@ -397,6 +401,10 @@ func TestDefaultsManagerCompareDefaults(t *testing.T) {
397
401
398
402
399
403
func TestDefaultsManagerExportImport(t *testing.T) {
404
405
406
407
400
408
409
410
0 commit comments