From 98f32d96d37de2bfa21da50b4933af0f806e2e70 Mon Sep 17 00:00:00 2001 From: Martin McKeaveney Date: Mon, 18 Jan 2021 15:54:25 +0000 Subject: [PATCH] fix bindable test --- packages/builder/tests/fetchBindableProperties.spec.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/builder/tests/fetchBindableProperties.spec.js b/packages/builder/tests/fetchBindableProperties.spec.js index 7f4c895ff9..0122573307 100644 --- a/packages/builder/tests/fetchBindableProperties.spec.js +++ b/packages/builder/tests/fetchBindableProperties.spec.js @@ -224,6 +224,8 @@ const testData = () => { }, ] + const queries = [] + const components = { "@budibase/standard-components/container": { props: {}, @@ -247,5 +249,5 @@ const testData = () => { }, } - return { screen, tables, components } + return { screen, tables, components, queries } }