Browse Source

Update cypress tests

pull/4023/head
Andrew Kingston 5 years ago
parent
commit
14a4545874
  1. 2
      packages/builder/cypress/integration/createBinding.spec.js
  2. 2
      packages/builder/cypress/integration/createComponents.spec.js
  3. 2
      packages/builder/src/builderStore/dataBinding.js

2
packages/builder/cypress/integration/createBinding.spec.js

@ -20,7 +20,7 @@ context("Create Bindings", () => {
cy.get("[data-cy=setting-text] input")
.type("{{}{{}{{} Current User._id {}}{}}")
.blur()
cy.getComponent(componentId).should("have.text", "{{{ user._id }}")
cy.getComponent(componentId).should("have.text", "{{{ [user].[_id] }}")
})
})

2
packages/builder/cypress/integration/createComponents.spec.js

@ -43,7 +43,7 @@ context("Create Components", () => {
it("should create a form and reset to match schema", () => {
cy.addComponent("Form", "Form").then(() => {
cy.get("[data-cy=Settings]").click()
cy.get("[data-cy=setting-datasource]")
cy.get("[data-cy=setting-dataSource]")
.contains("Choose option")
.click()
cy.get(".dropdown")

2
packages/builder/src/builderStore/dataBinding.js

@ -194,7 +194,7 @@ const getContextBindings = (asset, componentId) => {
*/
const getUserBindings = () => {
let bindings = []
const schema = getSchemaForDatasource({
const { schema } = getSchemaForDatasource({
type: "table",
tableId: TableNames.USERS,
})

Loading…
Cancel
Save