diff --git a/comp/trace/config/config_test.go b/comp/trace/config/config_test.go index 714300b99e99c..86c3c03833e3d 100644 --- a/comp/trace/config/config_test.go +++ b/comp/trace/config/config_test.go @@ -18,6 +18,7 @@ import ( "path/filepath" "reflect" "regexp" + "runtime" "strings" "testing" "text/template" @@ -2218,6 +2219,10 @@ func TestDisableReceiverConfig(t *testing.T) { } func TestOnUpdateAPIKeyCallback(t *testing.T) { + // APMSP-1494 + if runtime.GOOS == "darwin" { + t.Skip("skipping flaky test on darwin") + } var n int callback := func(_, _ string) { n++