Fix log spam during cypress CI (#11272)
Tell the web server not to log requests, to reduce the amount of noise in the CI logs.pull/28788/head^2
parent
cb03aac4cf
commit
7c3dcdf613
|
@ -169,12 +169,12 @@ jobs:
|
||||||
# The built-in Electron runner seems to grind to a halt trying to run the tests, so use chrome.
|
# The built-in Electron runner seems to grind to a halt trying to run the tests, so use chrome.
|
||||||
browser: ${{ steps.setup-chrome.outputs.chrome-path }}
|
browser: ${{ steps.setup-chrome.outputs.chrome-path }}
|
||||||
headed: true
|
headed: true
|
||||||
start: npx serve -p 8080 ../webapp
|
start: npx serve -p 8080 -L ../webapp
|
||||||
wait-on: "http://localhost:8080"
|
wait-on: "http://localhost:8080"
|
||||||
record: true
|
record: true
|
||||||
parallel: true
|
parallel: true
|
||||||
command-prefix: "yarn percy exec --parallel --"
|
command-prefix: "yarn percy exec --parallel --"
|
||||||
config: '{"reporter":"cypress-multi-reporters", "reporterOptions": { "configFile": "cypress-ci-reporter-config.json" }, "morgan": false }'
|
config: '{"reporter":"cypress-multi-reporters", "reporterOptions": { "configFile": "cypress-ci-reporter-config.json" } }'
|
||||||
ci-build-id: ${{ needs.prepare.outputs.uuid }}
|
ci-build-id: ${{ needs.prepare.outputs.uuid }}
|
||||||
env:
|
env:
|
||||||
# pass the Dashboard record key as an environment variable
|
# pass the Dashboard record key as an environment variable
|
||||||
|
|
Loading…
Reference in New Issue