For every Pull Request on GitHub and on the main branch the coverage data will get sent over to Coveralls, this is helpful for finding functions that aren't covered by tests.
You can use the BROWSER
environment variable to use a different browser than Chromium for the tests and use the HEADLESS
environment variable which is useful for debugging.
BROWSER=chromium HEADLESS=1 go test -v --race ./...
- Find out to which upstream version you want to roll, you need to find out the upstream commit SHA.
bash scripts/apply-patch.sh
cd playwright
reset HEAD~1
this reverts the custom patchesgit stash
- checkout new new sha
git checkout <sha>
- apply the patch again
git stash pop
(and fix merge conflicts) - once you are happy you can commit the changes
git commit -am "apply patch"
- regenerate a new patch
bash scripts/update-patch.sh