File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
internal/js/modules/k6/browser/tests Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -1764,14 +1764,11 @@ func TestPageIsHidden(t *testing.T) {
1764
1764
}
1765
1765
}
1766
1766
1767
- func TestShadowDOMAndDocumentFragment (t * testing.T ) { //nolint:tparallel
1767
+ func TestShadowDOMAndDocumentFragment (t * testing.T ) {
1768
1768
t .Parallel ()
1769
1769
if runtime .GOOS == "windows" {
1770
- t .Skip () // timeouts
1770
+ t .Skip ("windows timeouts on these tests" )
1771
1771
}
1772
-
1773
- tb := newTestBrowser (t , withFileServer ())
1774
-
1775
1772
tests := []struct {
1776
1773
name string
1777
1774
selector string
@@ -1798,8 +1795,10 @@ func TestShadowDOMAndDocumentFragment(t *testing.T) { //nolint:tparallel
1798
1795
},
1799
1796
}
1800
1797
1801
- for _ , tt := range tests { //nolint:paralleltest
1798
+ for _ , tt := range tests {
1802
1799
t .Run (tt .name , func (t * testing.T ) {
1800
+ t .Parallel ()
1801
+ tb := newTestBrowser (t , withFileServer ())
1803
1802
tb .vu .ActivateVU ()
1804
1803
tb .vu .StartIteration (t )
1805
1804
defer tb .vu .EndIteration (t )
You can’t perform that action at this time.
0 commit comments