Skip to content

Commit 32410f4

Browse files
authored
ci: switch to chromium to avoid chrome popup (#323)
* ci: switch to chromium to avoid chrome popup * chore: fixed package name * chore: added -y
1 parent 150edfe commit 32410f4

4 files changed

+5
-8
lines changed

Dockerfile

+2-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,8 @@ ENV NODE_OPTIONS=--dns-result-order=ipv4first
99
RUN apt-get update \
1010
&& apt-get install -y wget gnupg ca-certificates jq xvfb
1111

12-
# Install Chrome
13-
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
14-
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' \
15-
&& apt-get update \
16-
&& apt-get install -y google-chrome-stable
12+
# Install Chromium
13+
RUN apt-get install -y chromium
1714

1815
# Setup Nginx
1916
RUN apt update && apt install -y nginx

test/e2e/docker-compose-liquidation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ services:
2929
yarn dev & sleep 5 &&
3030
3131
# Run end-to-end tests
32-
yarn test:e2e --spec test/e2e/specs/liquidation.spec.js'
32+
yarn test:e2e --spec test/e2e/specs/liquidation.spec.js --browser chromium'
3333
networks:
3434
- x13
3535

test/e2e/docker-compose-reconstitution.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ services:
2929
yarn dev & sleep 5 &&
3030
3131
# Run end-to-end tests
32-
yarn test:e2e --spec test/e2e/specs/liquidation-reconstitution.spec.js'
32+
yarn test:e2e --spec test/e2e/specs/liquidation-reconstitution.spec.js --browser chromium'
3333
networks:
3434
- x13
3535

test/e2e/docker-compose-vaults.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ services:
2828
yarn dev & sleep 5 &&
2929
3030
# Run end-to-end tests
31-
yarn test:e2e --spec test/e2e/specs/test.spec.js'
31+
yarn test:e2e --spec test/e2e/specs/test.spec.js --browser chromium'
3232
networks:
3333
- x12
3434

0 commit comments

Comments
 (0)