Skip to content

Commit 089c433

Browse files
committed
Skip TestPageScreenshotFullpage on Windows
1 parent afacece commit 089c433

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: js/modules/k6/browser/tests/page_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -652,6 +652,10 @@ func TestPageSetChecked(t *testing.T) {
652652
func TestPageScreenshotFullpage(t *testing.T) {
653653
t.Parallel()
654654

655+
if runtime.GOOS == "windows" {
656+
t.Skip("does not work on Windows")
657+
}
658+
655659
tb := newTestBrowser(t)
656660
p := tb.NewPage(nil)
657661

0 commit comments

Comments
 (0)