Ocelot-Social/cypress/integration/Admin.DonationInfo/the_donation_info_is_{string}.js
2021-09-16 10:52:36 +02:00

6 lines
207 B
JavaScript

import { Then } from "cypress-cucumber-preprocessor/steps";
Then("the donation info is {string}", (visibility) => {
cy.get('.top-info-bar')
.should(visibility === 'visible' ? 'exist' : 'not.exist')
})