Explorar o código

Remove duplicated test

Caleb Porzio %!s(int64=3) %!d(string=hai) anos
pai
achega
ed853b4c9c
Modificáronse 1 ficheiros con 0 adicións e 24 borrados
  1. 0 24
      tests/cypress/integration/directives/x-bind.spec.js

+ 0 - 24
tests/cypress/integration/directives/x-bind.spec.js

@@ -409,27 +409,3 @@ test('x-bind object syntax event handlers defined as functions receive the event
         get('span').should(haveText('bar'))
     }
 )
-
-test('x-bind object syntax ',
-    html`
-        <script>
-            window.data = () => { return {
-                button: {
-                    ['@click']() {
-                        this.$refs.span.innerText = this.$el.id
-                    }
-                }
-            }}
-        </script>
-        <div x-data="window.data()">
-            <button x-bind="button" id="bar">click me</button>
-
-            <span x-ref="span">foo</span>
-        </div>
-    `,
-    ({ get }) => {
-        get('span').should(haveText('foo'))
-        get('button').click()
-        get('span').should(haveText('bar'))
-    }
-)