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
When this runs through our drone pipeline it runs on the circleci/node:16-browsers image. We don't know when circle updates their chrome version so the pipeline can suddenly fail.
Hardcoded chrome version
TL;DR
As per #491 we need to update the hardcoded value listed in the
package.json
to match the chrome versionIssue
When we run protractor we manually list the chrome-version in the package.json
vote/package.json
Line 19 in 83302e6
When this runs through our drone pipeline it runs on the circleci/node:16-browsers image. We don't know when circle updates their chrome version so the pipeline can suddenly fail.
vote/.drone.yml
Line 66 in 83302e6
One can see what version of google chrome the image with
$ docker run -it --entrypoint "google-chrome" circleci/node:16-browsers --version Google Chrome 96.0.4664.110
This is sub-optimal and can be annoying. Should find a better way to run this.
The text was updated successfully, but these errors were encountered: