mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-12 23:35:52 +00:00
9 lines
240 B
JavaScript
9 lines
240 B
JavaScript
import { Then } from "@badeball/cypress-cucumber-preprocessor";
|
|
|
|
Then("I cannot upload a picture", () => {
|
|
cy.get(".base-card")
|
|
.children()
|
|
.should("not.have.id", "customdropzone")
|
|
.should("have.class", "profile-avatar");
|
|
});
|