Skip to content

Commit 8cf1d17

Browse files
authored
chore(deps): update circleci/browser-tools to 2.1.1 (#531)
* chore(deps): update circleci/browser-tools to 2.1.1 * prevent installation of ChromeDriver
1 parent 7b918d0 commit 8cf1d17

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

src/@orb.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ display:
77
home_url: "https://cypress.io"
88
source_url: "https://github.com/cypress-io/circleci-orb"
99

10-
# if our orb requires other orbs, we can import them like this. Otherwise remove the "orbs" stanza.
1110
orbs:
1211
node: circleci/node@7
13-
browser-tools: circleci/browser-tools@1.5.3
12+
browser-tools: circleci/browser-tools@2.1.1

src/commands/install.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ steps:
6161
- when:
6262
condition: << parameters.install-browsers >>
6363
steps:
64-
- browser-tools/install-browser-tools
64+
- browser-tools/install_browser_tools:
65+
install_chromedriver: false
6566
- restore_cache:
6667
name: Restore Cypress cache
6768
key: << parameters.cypress-cache-key >>

src/examples/browser.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
description: >
2-
Run Cypress tests using specified browser. The CircleCI Browser Tools orb at https://circleci.com/developer/orbs/orb/circleci/browser-tools#commands-install-browser-tools
3-
currently supports Chrome & Firefox. See https://circleci.com/developer/orbs/orb/cypress-io/cypress#usage-edge, for Microsoft Edge support.
2+
Run Cypress tests using specified browser. `install_browsers: true` installs the default browsers Chrome and Firefox from the CircleCI Browser Tools orb at https://circleci.com/developer/orbs/orb/circleci/browser-tools#commands-install_browser_tools. See https://circleci.com/developer/orbs/orb/cypress-io/cypress#usage-edge, for current Microsoft Edge support.
43
usage:
54
version: 2.1
65
orbs:

0 commit comments

Comments
 (0)