Skip to content

Commit fab347f

Browse files
authored
docs: replace and fix edge example (#489)
1 parent b3455e4 commit fab347f

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

src/examples/edge.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,19 @@ usage:
44
version: 2.1
55
orbs:
66
cypress: cypress-io/cypress@3
7-
executor:
8-
docker:
9-
image: cypress/browsers:node-18.14.1-chrome-111.0.5563.146-1-ff-111.0.1-edge-111.0.1661.54-1
7+
executors:
8+
cypress-browsers:
9+
docker:
10+
- image: cypress/browsers:node-20.17.0-chrome-129.0.6668.70-1-ff-130.0.1-edge-129.0.2792.52-1
11+
jobs:
12+
edge-test:
13+
executor: cypress-browsers
14+
steps:
15+
- cypress/install
16+
- cypress/run-tests:
17+
start-command: "npm run start:dev"
18+
cypress-command: 'npx cypress run --browser edge'
1019
workflows:
1120
use-my-orb:
1221
jobs:
13-
- cypress/run:
14-
start-command: "npm run start:dev"
15-
cypress-command: "npx cypress run --browser edge"
22+
- edge-test

0 commit comments

Comments
 (0)