Skip to content

Commit

Permalink
Skipping TestRun on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
agnivade committed Jun 28, 2024
1 parent f33b6ec commit 75d6bcf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ import (
"os"
"os/exec"
"path/filepath"
"runtime"
"testing"
)

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 75d6bcf

Please sign in to comment.