We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1bc9f5 commit 8e5bf0cCopy full SHA for 8e5bf0c
cell/trace_id_test.go
@@ -3,6 +3,7 @@ package cell_test
3
import (
4
"os"
5
"path/filepath"
6
+ "runtime"
7
"strings"
8
9
"code.cloudfoundry.org/archiver/extractor/test_helper"
@@ -35,6 +36,9 @@ var _ = Describe("TraceId", func() {
35
36
)
37
38
BeforeEach(func() {
39
+ if runtime.GOOS == "windows" {
40
+ Skip(" not yet supported on windows")
41
+ }
42
requestId = "0bc29108-c522-4360-93dd-30ca38cce13d"
43
loggedRequestId = strings.ReplaceAll(requestId, "-", "")
44
fileServer, fileServerStaticDir = componentMaker.FileServer()
0 commit comments