Skip to content

Commit

Permalink
Make TestNewBrowserContext parallel
Browse files Browse the repository at this point in the history
After having a discussion, we decided to make this parallel. See the
related discussion here:
#1007 (comment)
  • Loading branch information
inancgumus committed Aug 31, 2023
1 parent 9cd296e commit bdcddb1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions common/browser_context_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ import (
)

func TestNewBrowserContext(t *testing.T) {
t.Parallel()

t.Run("add_web_vital_js_scripts_to_context", func(t *testing.T) {
t.Parallel()

ctx, cancel := context.WithCancel(context.Background())
logger := log.NewNullLogger()
b := newBrowser(ctx, cancel, nil, NewLocalBrowserOptions(), logger)
Expand Down

0 comments on commit bdcddb1

Please sign in to comment.