Skip to content

Commit

Permalink
[NO-ISSUE] chore: Remove xfail from tests (#1830)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinigfer authored Oct 23, 2024
1 parent 7cb5ce8 commit 3bd0fa2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/account-settings/update-account-settings.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const fixtures = {
complement: 'Apt. 123'
}

describe('Account Settings spec', { tags: ['@dev2', '@xfail'] }, () => {
describe('Account Settings spec', { tags: ['@dev2'] }, () => {
beforeEach(() => {
cy.login()
cy.openProduct('Account Settings')
Expand Down Expand Up @@ -39,4 +39,4 @@ describe('Account Settings spec', { tags: ['@dev2', '@xfail'] }, () => {
cy.get(selectors.accountSettings.companyId).should('have.value', fixtures.companyId)
cy.get(selectors.accountSettings.postalCode).should('have.value', fixtures.postalCode)
})
})
})
2 changes: 1 addition & 1 deletion cypress/e2e/domains/create-domain-edge-application.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const createDigitalCertificateCase = () => {
cy.wait('@getDigitalCertificatesApi')
}

describe('Domains spec', { tags: ['@dev3', '@xfail'] }, () => {
describe('Domains spec', { tags: ['@dev3'] }, () => {
beforeEach(() => {
cy.login()
})
Expand Down
4 changes: 2 additions & 2 deletions cypress/e2e/domains/edit-domain.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const createEdgeApplicationCase = () => {
cy.get(selectors.domains.pageTitle(edgeAppName)).should('have.text', edgeAppName)
}

describe('Domains spec', { tags: ['@dev3', '@xfail'] }, () => {
describe('Domains spec', { tags: ['@dev3'] }, () => {
beforeEach(() => {
cy.login()
})
Expand Down Expand Up @@ -78,4 +78,4 @@ describe('Domains spec', { tags: ['@dev3', '@xfail'] }, () => {
})
cy.deleteEntityFromList({ entityName: edgeAppName, productName: 'Edge Application' })
})
})
})
2 changes: 1 addition & 1 deletion cypress/e2e/purge/create-purge-domain.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let domainName
let edgeAppName
let generatedDomainUrl

describe('Real-time Purge spec', { tags: ['@dev6', '@xfail'] }, () => {
describe('Real-time Purge spec', { tags: ['@dev6'] }, () => {
beforeEach(() => {
cy.login()
})
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/variables/create-secret.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import selectors from '../../support/selectors'
let variableKey
let variableValue

describe('Variables spec', { tags: ['@dev2', '@xfail'] }, () => {
describe('Variables spec', { tags: ['@dev2'] }, () => {
beforeEach(() => {
cy.login()
cy.openProduct('Variables')
Expand Down

0 comments on commit 3bd0fa2

Please sign in to comment.