Skip to content

Commit

Permalink
ci: fix chrome nightly test (#2988)
Browse files Browse the repository at this point in the history
* ci: fix chrome nightly test

* who know

* fix
  • Loading branch information
straker authored Jun 11, 2021
1 parent cb4939f commit c657ea6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,13 @@ jobs:
- checkout
- <<: *restore_dependency_cache_unix
- run: npm run build
# install Chrome Canary
# install Chrome Beta
- run: |
wget https://dl.google.com/linux/direct/google-chrome-unstable_current_amd64.deb
sudo apt install ./google-chrome-unstable_current_amd64.deb
- run: npm run test -- --browsers ChromeCanary,FirefoxNightly
wget https://dl.google.com/linux/direct/google-chrome-beta_current_amd64.deb
sudo apt install ./google-chrome-beta_current_amd64.deb
- run: |
CHROME_BIN="$(which google-chrome-beta)" && echo "CHROME_BIN: $CHROME_BIN"
npm run test -- --browsers Chrome,FirefoxNightly
# Test api docs can be built
build_api_docs:
Expand Down

0 comments on commit c657ea6

Please sign in to comment.