1
0

x-cloak.spec.js 260 B

12345678910
  1. import { html, notHaveAttribute, test } from '../../utils'
  2. test('x-cloak is removed',
  3. html`
  4. <div x-data="{ hidden: true }">
  5. <span x-cloak></span>
  6. </div>
  7. `,
  8. ({ get }) => get('span').should(notHaveAttribute('x-cloak'))
  9. )