You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: fix coveralls badge not rendering in README (#620)
The coveralls native badge serves the SVG via a 302 redirect to an
S3 asset marked Cache-Control: no-cache, which GitHub's Camo image
proxy won't render. Switch to the shields.io coveralls endpoint, which
returns a directly-served, cacheable SVG. The link still points at the
coveralls dashboard.
chore: roll to Playwright v1.57.0 (#578)
* chore: roll to Playwright v1.57.0
Fix playwright submodule commit
Rerun gofumpt
Change ConsoleMessages to use newConsoleMessage() to properly deserialize event objects
Add test coverage
Update page_test.go
Fix failing end-to-end test
Update README.md
Fix README
Update README.md
* Fix unit tests
fix: waiter#RunAndWait maybe cause deadlock. (#555)
for errChan cap is 1 and receive both event timeout err and callback err( block on the err for errChan handle receiving(wait#waitFunc) after callback send err(waiter#RunAndWait) ).