mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-12 23:35:52 +00:00
8 lines
199 B
JavaScript
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')
|
|
})
|