-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Edge example fails - source code #488
Comments
Your development orb has been published. It will expire in 30 days. This does not contain all the workflow lines from https://github.com/cypress-io/circleci-orb/blob/master/src/examples/edge.yml . The description: >
Run Cypress tests in Microsoft Edge.
usage:
version: 2.1
orbs:
cypress: cypress-io/cypress@3
executors:
cypress-browsers:
docker:
- image: cypress/browsers:node-20.17.0-chrome-129.0.6668.70-1-ff-130.0.1-edge-129.0.2792.52-1
jobs:
edge-test:
executor: cypress-browsers
steps:
- cypress/install
- cypress/run-tests:
start-command: "npm run start:dev"
cypress-command: 'npx cypress run --browser edge'
workflows:
use-my-orb:
jobs:
- edge-test I can't see any reason why it would just omit this section, unless this is linked to the Cypress Orb using an outdated version of |
If I run circleci orb pack ./src I can see that the pack option misses out the I don't know what to do next. It looks like a bug in |
|
|
|
Issue
The example source code src/examples/edge.yml in the GitHub cypress-io/circleci-orb repo for running Cypress against the Microsoft Edge web browser using the Cypress CircleCI Orb fails.
executor
is unused. The cypress/run job has no provision for specifying an alternate executor. See cypress/run has no executor param #429. It uses thecimg/node:18.16.1-browsers
image defined in src/executors/default.yml.The failing example source code in src/examples/edge.yml is:
The runnable part of this code is
Logs
Other
relates to
The text was updated successfully, but these errors were encountered: