mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
8 lines
235 B
JavaScript
8 lines
235 B
JavaScript
import { Then } from "cypress-cucumber-preprocessor/steps";
|
|
|
|
Then("I cannot upload a picture", () => {
|
|
cy.get(".base-card")
|
|
.children()
|
|
.should("not.have.id", "customdropzone")
|
|
.should("have.class", "profile-avatar");
|
|
}); |