Skip to content

Commit

Permalink
Fix test typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed Oct 16, 2024
1 parent 08a9808 commit beeec1e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions webapp/cypress/e2e/editPage.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@ describe("Edit Page", () => {
it("Clicks the upload buttons and checks that the modals are shown", () => {
cy.get('[data-testid="search-input"]').type("editable_sample");
cy.findByText("editable_sample").click();
cy.findByLabelText("Name").should("have.value", "This is a sample name");

cy.findByText("Upload files...").click();
cy.findByText("Drop files here, browse files or import from:").should("exist");
Expand All @@ -271,6 +270,6 @@ describe("Edit Page", () => {

cy.findByLabelText("Select a file:").click();
cy.get(".file-select-dropdown").findByText("example_bmb.xye").click();
cy.findByText("X axis").exists();
cy.findByText("X axis").should("exist");
});
});

0 comments on commit beeec1e

Please sign in to comment.