Skip to content

Commit

Permalink
fixup! browser: disable even more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mstoykov committed Dec 16, 2024
1 parent f4b1030 commit c8b0baf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions js/modules/k6/browser/tests/locator_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package tests

import (
"runtime"
"testing"
"time"

Expand All @@ -26,6 +27,9 @@ type jsFrameWaitForSelectorOpts struct {

func TestLocator(t *testing.T) {
t.Parallel()
if runtime.GOOS == "windows" {
t.Skip()
}

tests := []struct {
name string
Expand Down
3 changes: 3 additions & 0 deletions js/modules/k6/browser/tests/page_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1424,6 +1424,9 @@ func TestPageWaitForSelector(t *testing.T) {

func TestPageThrottleNetwork(t *testing.T) {
t.Parallel()
if runtime.GOOS == "windows" {
t.Skip() // windows timeouts
}

testCases := []struct {
name string
Expand Down

0 comments on commit c8b0baf

Please sign in to comment.