Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run CI (tests) on MacOS #3528

Merged
merged 9 commits into from
Jan 15, 2024
Prev Previous commit
Next Next commit
Increase test sleep time to reduce flakiness
joanlopez committed Jan 11, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 95796535fa73cfc3c74d2e8d89db804cc7ffa60d
2 changes: 1 addition & 1 deletion js/runner_test.go
Original file line number Diff line number Diff line change
@@ -765,7 +765,7 @@ func TestVURunInterruptDoesntPanic(t *testing.T) {
assert.Contains(t, vuErr.Error(), "context canceled")
}()
<-ch
time.Sleep(time.Millisecond * 10) // NOTE: increase this in case of problems ;)
time.Sleep(time.Millisecond * 100) // NOTE: increase this in case of problems ;)
newCancel()
wg.Wait()
}