Skip to content
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

Capture individual configuration options defined on tests when recording to the dashboard #15487

Closed
kuceb opened this issue Mar 15, 2021 · 2 comments · Fixed by #14925
Closed

Comments

@kuceb
Copy link
Contributor

kuceb commented Mar 15, 2021

  • capture + send individual configuration options defined on tests when recording to the dashboard
describe('has custom suite config', { baseUrl: 'http://example.com' }, () => {
  it('has custom config', { requestTimeout: 2000 }, () => {
    cy.request(...)
  })
})

should be captured as:

{
  title: ['has custom suite config', 'has custom config'],
  config: {
    baseUrl: 'http://example.com',
    requestTimeout: 2000,
  }
}
@cypress-bot
Copy link
Contributor

cypress-bot bot commented Mar 15, 2021

The code for this is done in cypress-io/cypress#14925, but has yet to be released.
We'll update this issue and reference the changelog when it's released.

@cypress-bot
Copy link
Contributor

cypress-bot bot commented Mar 15, 2021

Released in 6.7.0.

This comment thread has been locked. If you are still experiencing this issue after upgrading to
Cypress v6.7.0, please open a new issue.

@cypress-bot cypress-bot bot locked as resolved and limited conversation to collaborators Mar 15, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant