Fix table cypress tests
This commit is contained in:
parent
aa96388e0b
commit
6c3aeac69a
|
@ -8,7 +8,7 @@ context("Create a Table", () => {
|
|||
cy.createTable("dog")
|
||||
|
||||
// Check if Table exists
|
||||
cy.get(".title").should("have.text", "dog")
|
||||
cy.get(".title span").should("have.text", "dog")
|
||||
})
|
||||
|
||||
it("adds a new column to the table", () => {
|
||||
|
|
|
@ -68,6 +68,7 @@ Cypress.Commands.add("createTable", tableName => {
|
|||
cy.contains("Create New Table").click()
|
||||
cy.get(".menu-container")
|
||||
.get("input")
|
||||
.first()
|
||||
.type(tableName)
|
||||
|
||||
cy.contains("Save").click()
|
||||
|
|
Loading…
Reference in New Issue