mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +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')
|
|
})
|