46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
import Alpine from 'alpinejs'
|
|
import { wait } from '@testing-library/dom'
|
|
const timeout = ms => new Promise(resolve => setTimeout(resolve, ms))
|
|
|
|
global.MutationObserver = class {
|
|
observe() {}
|
|
}
|
|
|
|
test('can nest components', async () => {
|
|
document.body.innerHTML = `
|
|
<div x-data="{ foo: 'bar' }">
|
|
<span x-text="foo"></span>
|
|
|
|
<div x-data="{ foo: 'bob' }">
|
|
<button x-on:click="foo = 'baz'">Something</button>
|
|
</div>
|
|
</div>
|
|
`
|
|
|
|
Alpine.start()
|
|
|
|
expect(document.querySelector('span').textContent).toEqual('bar')
|
|
|
|
document.querySelector('button').click()
|
|
|
|
await timeout(20)
|
|
|
|
await wait(() => { expect(document.querySelector('span').textContent).toEqual('bar') })
|
|
})
|
|
|
|
test('can access parent properties after nested components', async () => {
|
|
document.body.innerHTML = `
|
|
<div x-data="{ foo: 'bar' }">
|
|
<div x-data="{ foo: 'bob' }">
|
|
<button x-on:click="foo = 'baz'">Something</button>
|
|
</div>
|
|
|
|
<span x-text="foo"></span>
|
|
</div>
|
|
`
|
|
|
|
Alpine.start()
|
|
|
|
expect(document.querySelector('span').textContent).toEqual('bar')
|
|
})
|