Skip to content

Commit

Permalink
fix(cypress): hot-fix human eval failes
Browse files Browse the repository at this point in the history
  • Loading branch information
ashrafchowdury committed Dec 24, 2024
1 parent 171fc7c commit 8d61b6a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion agenta-web/cypress/support/commands/evaluations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ Cypress.Commands.add("createVariantsAndTestsets", () => {
cy.wrap(testsetName).as("testsetName")

cy.get(".ag-row").should("have.length", 1)
cy.get('[data-cy="testset-header-column-edit-button"]').eq(0).click()
cy.wait(2000)
cy.get('[data-cy="testset-header-column-edit-button"]').eq(0).should("exist").click()
cy.get('[data-cy="testset-header-column-edit-input"]').clear()
cy.get('[data-cy="testset-header-column-edit-input"]').type("country")
cy.get('[data-cy="testset-header-column-save-button"]').click()
Expand Down

0 comments on commit 8d61b6a

Please sign in to comment.