12345678910111213141516171819202122232425 |
- describe("no toolbar", () => {
- before(() => {
- cy.visit("/iframe.html?id=example-pipelineeditor--no-toolbar");
- });
- it("renders empty pipeline message", () => {
- cy.findByText(/your flow is empty/i).should("exist");
- });
- });
|