We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a4f62c commit 11ae3beCopy full SHA for 11ae3be
.github/workflows/e2e-prod-status-test.yml
@@ -20,9 +20,12 @@ jobs:
20
- name: Install dependencies
21
run: npm install
22
- name: Set up Chrome
23
+ id: setup_chrome
24
uses: browser-actions/setup-chrome@latest
25
with:
26
chrome-version: stable
27
install-chromedriver: true
28
- name: Run Nightwatch e2e tests on Prod
29
+ env:
30
+ CHROME_BIN: ${{ steps.setup_chrome.outputs.chrome-path }}
31
run: npx nightwatch nightwatch/e2e-test-of-uiucchat-prod.js
nightwatch.conf.js
@@ -54,6 +54,7 @@ module.exports = {
54
desiredCapabilities: {
55
browserName: 'chrome',
56
'goog:chromeOptions': {
57
+ binary: process.env.CHROME_BIN || undefined,
58
args: [
59
'--headless=new',
60
'--no-sandbox',
0 commit comments