1
0
Fork 0
mirror of synced 2024-07-02 21:10:43 +12:00

fix cypress tests again

This commit is contained in:
Peter Clement 2021-09-29 09:53:31 +01:00
parent 55d61a3293
commit fd96e1f7a2

View file

@ -1,4 +1,3 @@
/*
context("Create a Table", () => {
before(() => {
cy.login()
@ -37,7 +36,7 @@ context("Create a Table", () => {
it("edits a row", () => {
cy.contains("button", "Edit").click({ force: true })
cy.wait(1000)
cy.get(".spectrum-Modal input").type("RoverUpdated")
cy.get(".spectrum-Modal input").type("Updated")
cy.contains("Save").click()
cy.contains("RoverUpdated").should("have.text", "RoverUpdated")
})
@ -70,4 +69,3 @@ context("Create a Table", () => {
cy.contains("dog").should("not.exist")
})
})
*/