37 lines
927 B
JavaScript
37 lines
927 B
JavaScript
import Alpine from 'alpinejs'
|
|
import { wait } from '@testing-library/dom'
|
|
|
|
global.MutationObserver = class {
|
|
observe() {}
|
|
}
|
|
|
|
test('x-html on init', async () => {
|
|
document.body.innerHTML = `
|
|
<div x-data="{ foo: '<h1>bar</h1>' }">
|
|
<span x-html="foo"></span>
|
|
</div>
|
|
`
|
|
|
|
Alpine.start()
|
|
|
|
await wait(() => { expect(document.querySelector('span').innerHTML).toEqual('<h1>bar</h1>') })
|
|
})
|
|
|
|
test('x-html on triggered update', async () => {
|
|
document.body.innerHTML = `
|
|
<div x-data="{ foo: '' }">
|
|
<button x-on:click="foo = '<h1>bar</h1>'"></button>
|
|
|
|
<span x-html="foo"></span>
|
|
</div>
|
|
`
|
|
|
|
Alpine.start()
|
|
|
|
await wait(() => { expect(document.querySelector('span').innerHTML).toEqual('') })
|
|
|
|
document.querySelector('button').click()
|
|
|
|
await wait(() => { expect(document.querySelector('span').innerHTML).toEqual('<h1>bar</h1>') })
|
|
})
|