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

"Skipped" issues are shown as "Pending" in a test report #9612

Closed
denis-domanskii opened this issue Dec 10, 2020 · 1 comment
Closed

"Skipped" issues are shown as "Pending" in a test report #9612

denis-domanskii opened this issue Dec 10, 2020 · 1 comment
Labels
type: duplicate This issue or pull request already exists

Comments

@denis-domanskii
Copy link

denis-domanskii commented Dec 10, 2020

Current behavior

Issues with an it.skip attribute shown as "Pending" in a Cypress test report.

Desired behavior

Issues with an it.skip attribute shown as "Skipped" in a Cypress test report.

Test code to reproduce

describe('page', () => {
  it('works', () => {
    cy.visit('https://example.cypress.io')
  })

  it.skip('skip', () => {
    cy.visit('https://example.cypress.io')
  })
})

Result is:


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  spec.js                                  00:01        2        1        -        1        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        2        1        -        1        -  


Versions

Cypress 6.1.0

@denis-domanskii denis-domanskii changed the title Skipped issues are shown as Pending" "Skipped" issues are shown as "Pending" in a test report Dec 10, 2020
@denis-domanskii
Copy link
Author

Closed as duplicate: #3092

@jennifer-shehane jennifer-shehane added the type: duplicate This issue or pull request already exists label Dec 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: duplicate This issue or pull request already exists
Projects
None yet
Development

No branches or pull requests

2 participants