From 03c4f0fc24dc234e6fa8021013098a895f25f6c7 Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Mon, 5 Jul 2021 17:37:38 +0100 Subject: [PATCH] Fix cypress test --- packages/builder/cypress/integration/createBinding.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/builder/cypress/integration/createBinding.spec.js b/packages/builder/cypress/integration/createBinding.spec.js index 04b7b0d6de..3f85526b11 100644 --- a/packages/builder/cypress/integration/createBinding.spec.js +++ b/packages/builder/cypress/integration/createBinding.spec.js @@ -29,7 +29,7 @@ context("Create Bindings", () => { // The builder preview pages don't have a real URL, so all we can do // is check that we were able to bind to the property, and that the // component exists on the page - cy.getComponent(componentId).should("have.text", "Placeholder text") + cy.getComponent(componentId).should("have.text", "New Paragraph") }) })