Ocelot-Social/cypress/integration/Post.Images/my_post_has_a_teaser_image.js
2021-04-12 13:24:51 +02:00

7 lines
194 B
JavaScript

import { When } from "cypress-cucumber-preprocessor/steps";
When('my post has a teaser image', () => {
cy.get('.contribution-form .image')
.should('exist')
.and('have.attr', 'src')
})