Ocelot-Social/cypress/integration/Search/the_search_field_should_clear.js
2021-04-12 13:24:51 +02:00

6 lines
187 B
JavaScript

import { Then } from "cypress-cucumber-preprocessor/steps";
Then("the search field should clear", () => {
cy.get(".searchable-input .ds-select input")
.should("have.text", "");
});