瀏覽代碼

Remove test

Caleb Porzio 3 年之前
父節點
當前提交
ef9d3aab4b
共有 1 個文件被更改,包括 0 次插入15 次删除
  1. 0 15
      tests/cypress/integration/directives/x-modelable.spec.js

+ 0 - 15
tests/cypress/integration/directives/x-modelable.spec.js

@@ -24,21 +24,6 @@ test('can expose data for x-model binding',
     }
 )
 
-test('Something like Livewire can hook into x-modelable',
-    html`
-        <h1 x-data="{ value: 'bar' }" x-modelable="value" x-init="
-            () => {}; $el._x_modelable_hook = (val) => {
-                return val.toUpperCase()
-            }
-        ">
-            <span x-text="value"></span>
-        </h1>
-    `,
-    ({ get }) => {
-        get('span').should(haveText('BAR'))
-    }
-)
-
 test('x-modelable works when inside x-bind and x-model is outside',
     html`
         <div x-data="{ outer: 'foo', thing: {