Skip to content

Commit a1c7d34

Browse files
committed
Tests - Remove faulty toRefs on a binding in useObjectBindings cy test
1 parent 52607e8 commit a1c7d34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/useObjectBindings.cy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ describe('useObjectBindings', () => {
119119
const TestComponent = defineComponent({
120120
setup() {
121121
const bindings = useObjectBindings(configRef)
122-
const zoomShow = toRef(bindings, 'chart.zoom.show')
122+
const zoomShow = bindings['chart.zoom.show']
123123
return { zoomShow }
124124
},
125125
template: `

0 commit comments

Comments
 (0)