소스 검색

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: {