We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ed9e74 commit cbda909Copy full SHA for cbda909
1 file changed
pkg/client/chunk/expected_test.go
@@ -6,6 +6,7 @@ package chunk
6
7
import (
8
"fmt"
9
+ "runtime"
10
"slices"
11
"strings"
12
"testing"
@@ -254,6 +255,9 @@ func TestExpected(t *testing.T) {
254
255
}
256
257
func TestRecvExpected_Timestamp_Restart(t *testing.T) {
258
+ if runtime.GOOS == "windows" {
259
+ t.Skip("Skipping test on Windows for now. See https://github.com/elastic/elastic-agent-client/issues/120#issuecomment-2757564351")
260
+ }
261
firstTimestamp := time.Now()
262
first := &proto.CheckinExpected{
263
FeaturesIdx: 2,
0 commit comments