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
{{ message }}
This repository was archived by the owner on Jun 24, 2021. It is now read-only.
Describe the bug
While doing push, when the git hooks run, one of them is running some integration tests for the frontend and is failing on the Unix environment because it requires the chrome variable to be set.
To Reproduce
Steps to reproduce the behavior:
Try to do push
You'll se the error No binary for ChromeHeadless browser on your platform
Expected behavior
To run smoothly all the test (git hooks) and push properly.
Desktop (please complete the following information):
OS Linux Mint
Additional context
Adding export CHROME_BIN=/usr/bin/chromium-browser before running the actual tests in the git hooks should solve the problem.
Describe the bug
While doing push, when the git hooks run, one of them is running some integration tests for the frontend and is failing on the Unix environment because it requires the chrome variable to be set.
To Reproduce
Steps to reproduce the behavior:
No binary for ChromeHeadless browser on your platformExpected behavior
To run smoothly all the test (git hooks) and push properly.
Desktop (please complete the following information):
Additional context
Adding
export CHROME_BIN=/usr/bin/chromium-browserbefore running the actual tests in the git hooks should solve the problem.