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 signed with the committer’s verified signature.
TimoGlastra Timo Glastra
commit c91970dbf3e020d0e7de6df61b3d5ef1d77ca1a7
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 * 1) // NOTE: increase this in case of problems ;)
time.Sleep(time.Millisecond * 10) // NOTE: increase this in case of problems ;)
newCancel()
wg.Wait()
}