1
0
Fork 0
mirror of synced 2024-07-03 13:30:46 +12:00
budibase/packages/builder/cypress/integration/createTable.spec.js

72 lines
1.9 KiB
JavaScript
Raw Normal View History

2020-09-26 00:12:16 +12:00
context("Create a Table", () => {
before(() => {
cy.visit("localhost:4001/_builder")
cy.createApp("Table App", "Table App Description")
})
it("should create a new Table", () => {
cy.createTable("dog")
// Check if Table exists
2020-10-07 23:23:47 +13:00
cy.get(".title span").should("have.text", "dog")
2020-09-26 00:12:16 +12:00
})
it("adds a new column to the table", () => {
cy.addColumn("dog", "name", "Text")
2020-09-26 00:12:16 +12:00
cy.contains("name").should("be.visible")
})
it("creates a row in the table", () => {
cy.addRow(["Rover"])
2020-09-26 00:12:16 +12:00
cy.contains("Rover").should("be.visible")
})
it("updates a column on the table", () => {
cy.contains("header", "name")
.trigger("mouseover")
.find(".ri-pencil-line")
.click({ force: true })
cy.get(".actions input")
.first()
.type("updated")
2020-10-15 20:17:26 +13:00
// Unset table display column
cy.contains("display column").click()
2020-09-26 00:12:16 +12:00
cy.contains("Save Column").click()
cy.contains("nameupdated").should("have.text", "nameupdated")
2020-09-26 00:12:16 +12:00
})
it("edits a row", () => {
2020-10-28 05:01:27 +13:00
cy.get("button").contains("Edit").click()
cy.get(".modal input").type("Updated")
2020-09-26 00:12:16 +12:00
cy.contains("Save").click()
cy.contains("RoverUpdated").should("have.text", "RoverUpdated")
})
2020-10-28 05:01:27 +13:00
it("deletes a row", () => {
cy.get(".ag-checkbox-input").check({ force: true })
cy.contains("Delete 1 row(s)").click()
cy.get(".modal").contains("Delete").click()
2020-09-26 00:12:16 +12:00
cy.contains("RoverUpdated").should("not.exist")
})
it("deletes a column", () => {
cy
.contains("header", "name")
.trigger("mouseover")
.find(".ri-pencil-line").click({ force: true })
cy.contains("Delete").click()
2020-10-28 05:01:27 +13:00
cy.wait(50)
cy.get(".buttons").contains("Delete").click()
2020-09-26 00:12:16 +12:00
cy.contains("nameupdated").should("not.exist")
})
it("deletes a table", () => {
cy.contains("div", "dog")
.get(".ri-more-line")
.click()
cy.get("[data-cy=delete-table]").click()
cy.contains("Delete Table").click()
cy.contains("dog").should("not.exist")
})
2020-08-08 05:31:40 +12:00
})