Guys, i'm the new junior QA Analyst on the company and one of my tasks is to put automated test on the pipeline of the bitbucket,
i know that theres some questions with the same topic, but they're a little bit out of date.
This is the pipeline of the company at the moment, we use Angular so i wrote some tests using protractor and they run fine.
image: node:10
pipelines:
branches:
release:
- step:
deployment: Test
name: GAE Test Deploy
caches:
- node
script: # Modify the commands below to build your repository.
- npm install -g @angular/cli@6.0.0
- npm install --unsafe-perm
- ng build --configuration=test --aot
- pipe: atlassian/google-app-engine-deploy:0.4.1
variables:
KEY_FILE: $KEY_FILE
PROJECT: 'project'
VERSION: 'test'
DEPLOYABLES: 'app.yaml'
PROMOTE: 'false'
I'm confused about the pre-requisites(do i need a docker image with chrome installed?) to use protractor in a CI environment any help for me to start would be much appreciated