Closed slav-pilus closed 7 years ago
Thank you for reporting the issue, I will look into it. Can you provide an example of the build configuration for bitbucket ci?
here is the content of the bitbucket-pipelines.yml file:
image: trion/ng-cli-e2e
pipelines: default:
- step: caches:
- node script: # Modify the commands below to build your repository.
- npm install
- ng build
- ng lint
- ng test --browsers Chrome_no_sandbox -w false
- ng e2e
as said before only the last step fails
Thanks, I can reproduce the issue. Reason is that webdriver picks the wrong launcher that does not include the required framebuffer driven X11.
OK, how can we make it to pick the correct launcher?
I discovered that the latest protractor needs Chrome 59 while the base distribution used for this image only provides Chrome 58. I keep working on it. Sorry for the inconvenience and thanks a lot for bringing it up.
Should be fixed in trion/ng-cli-e2e:1.2.0
and :latest
, would be great if you could verify it.
it is working now many thanks for sorting this out
I'm using this docker image as part of my bitbucket pipeline build. All steps (npm install, ng lint, ng test) are working fine but during ng e2e I'm getting the following:
am I missing any config or there is a bug in current version?