Ocelot-Social/cypress/e2e/Post.Images/my_post_has_a_teaser_image.js

8 lines
199 B
JavaScript

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