Skip to content

Commit

Permalink
Cleaning up stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
agnivade committed Aug 9, 2024
1 parent 249f6c5 commit 40289e4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func run(ctx context.Context, args []string, errOutput io.Writer, flagSet *flag.
// create chrome instance
allocCtx, cancelAllocCtx := chromedp.NewExecAllocator(ctx, opts...)
defer cancelAllocCtx()
ctx, cancelCtx := chromedp.NewContext(allocCtx, chromedp.WithDebugf(logger.Printf))
ctx, cancelCtx := chromedp.NewContext(allocCtx)
defer cancelCtx()

chromedp.ListenTarget(ctx, func(ev interface{}) {
Expand Down
3 changes: 0 additions & 3 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ import (
)

func TestRun(t *testing.T) {
// if runtime.GOOS == "windows" {
// t.Skip("Skipping test on Windows. See https://github.com/agnivade/wasmbrowsertest/issues/59")
// }
for _, tc := range []struct {
description string
files map[string]string
Expand Down

0 comments on commit 40289e4

Please sign in to comment.