Skip to content

Commit

Permalink
Remove parallel tests
Browse files Browse the repository at this point in the history
It's possible that due to using parallel tests,
multiple browser instances are taking more resources
in a limited CI env.

We remove that to see if that improves things.
  • Loading branch information
agnivade committed Jun 28, 2024
1 parent 4a40c54 commit f33b6ec
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,7 @@ func main() {
expectErr: "context canceled",
},
} {
tc := tc // enable parallel sub-tests
t.Run(tc.description, func(t *testing.T) {
t.Parallel()
dir := t.TempDir()
for fileName, contents := range tc.files {
writeFile(t, dir, fileName, contents)
Expand Down

0 comments on commit f33b6ec

Please sign in to comment.