显示测试主体,在赛普拉斯中通过测试的测试步骤

Show test body, test steps for passing tests in Cypress

当测试在 Cypress 中通过时,它不会显示步骤,但如果失败,它会显示所有步骤以及导致测试失败的步骤。

我也想看到通过测试body/steps。

下图显示了通过测试和失败测试。失败的测试提供的信息要多得多。我也想通过考试。我怎样才能做到这一点?

 it('should select shipment method and type "test" into additional 
   notes', function () {
     cy.intercept('GET', 
  '**/GetDetailWithAvailableCampaign*').as('basketDetails')
  
  cy.on('uncaught:exception', (err, runnable) => { // If CheckoutJS throws an error, it will be caught here
    cy.get('[data-cy="information::forward"]').click()
    cy.url().should('include', '/basket/checkout/payment')
  
    cy.get('[data-cy="shipping::shipment_type"]').first().click()
    cy.get('[data-cy="shipping::shipment_type"]').should('be.checked')
  
    cy.get('[data-cy="misc::additional_message_checkbox"]').check({force: true}).should('be.checked')
    cy.get('[data-cy="misc::additional_message_textarea"]').should('be.visible').clear().type('Test')
  
    // there is no shipping::forward
    // cy.get('[data-cy="shipping::forward"]').click()
  
    cy.get('[data-cy="information::forward"]').click()
  })
})

it('should focus iframe and put a credit card', function () {
    cy.wait(4000)
    cy.url().should('include', '/basket/checkout/shipping')
    const iframeSelector = 'iframe[data-cy="payment::iframe"]'
    getIframeBody(iframeSelector).find('.btn-card-visa').click()
    cy.wait(2000)
    getIframeBody(iframeSelector).find('input#CardNumber').clear().type(Cypress.env('credit_card').number)
    getIframeBody(iframeSelector).find('input#Expiry').clear().type(Cypress.env('credit_card').expiry)
    getIframeBody(iframeSelector).find('input#HolderName').clear().type(Cypress.env('credit_card').holder_name)
    getIframeBody(iframeSelector).find('input#VerificationCode').clear().type(Cypress.env('credit_card').cvv)

    getIframeBody(iframeSelector).find('.btn-next').click()
}

默认情况下,单击运行器中的测试名称将展开并显示所有已执行的步骤。在你的例子中,它正在做这个。但是您 运行 遇到的问题很可能是您在第一个测试中等待的 uncaught:exception 事件没有发生,因此没有执行任何步骤。如果删除 cy.on('uncaught:exception'),您将看到执行的步骤。