Ocelot-Social/cypress/integration/UserProfile.Avatar/I_cannot_upload_a_picture.js

8 lines
232 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", "user-avatar");
});