Skip to content

Commit

Permalink
make test less flaky
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmood committed Jun 4, 2023
1 parent 99d0ab4 commit ba57122
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions page_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"net/http"
"os"
"path/filepath"
"runtime"
"sort"
"sync"
"testing"
Expand Down Expand Up @@ -791,6 +792,10 @@ func TestPageNavigateNetworkErr(t *testing.T) {
}

func TestPageNavigateErr(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("TODO: This test on Windows is flaky")
}

g := setup(t)

s := g.Serve()
Expand Down

0 comments on commit ba57122

Please sign in to comment.