1
0
Caleb Porzio 3 жил өмнө
parent
commit
40972204b9

+ 1 - 1
tests/cypress/integration/directives/x-for.spec.js

@@ -77,7 +77,7 @@ test('can destructure arrays',
     }
 )
 
-test.only('can destructure object',
+test('can destructure object',
     html`
         <div x-data="{ items: [{ foo: 'oof', bar: 'rab' }, { foo: 'ofo', bar: 'arb' }] }">
             <template x-for="({ foo, bar }, i) in items">

+ 1 - 1
tests/cypress/integration/directives/x-html.spec.js

@@ -35,7 +35,7 @@ test('x-html allows alpine code within',
     }
 )
 
-test.only('x-html runs even after x-if or x-for',
+test('x-html runs even after x-if or x-for',
     html`
         <div x-data="{ html: '<span x-text=&quot;foo&quot;></span>', foo: 'bar' }">
             <template x-if="true">