|
| 1 | +import type { ElementHandle } from 'puppeteer' |
1 | 2 | import { E2E_TIMEOUT, setupPuppeteer } from './e2eUtils'
|
2 | 3 | import path from 'node:path'
|
3 | 4 | import { Transition, createApp, h, nextTick, ref } from 'vue'
|
@@ -1653,6 +1654,74 @@ describe('e2e: Transition', () => {
|
1653 | 1654 | },
|
1654 | 1655 | E2E_TIMEOUT,
|
1655 | 1656 | )
|
| 1657 | + |
| 1658 | + // #12860 |
| 1659 | + test( |
| 1660 | + 'unmount children', |
| 1661 | + async () => { |
| 1662 | + const unmountSpy = vi.fn() |
| 1663 | + let storageContainer: ElementHandle<HTMLDivElement> |
| 1664 | + const setStorageContainer = (container: any) => |
| 1665 | + (storageContainer = container) |
| 1666 | + await page().exposeFunction('unmountSpy', unmountSpy) |
| 1667 | + await page().exposeFunction('setStorageContainer', setStorageContainer) |
| 1668 | + await page().evaluate(() => { |
| 1669 | + const { unmountSpy, setStorageContainer } = window as any |
| 1670 | + const { createApp, ref, h, onUnmounted, getCurrentInstance } = ( |
| 1671 | + window as any |
| 1672 | + ).Vue |
| 1673 | + createApp({ |
| 1674 | + template: ` |
| 1675 | + <div id="container"> |
| 1676 | + <transition> |
| 1677 | + <KeepAlive :include="includeRef"> |
| 1678 | + <TrueBranch v-if="toggle"></TrueBranch> |
| 1679 | + </KeepAlive> |
| 1680 | + </transition> |
| 1681 | + </div> |
| 1682 | + <button id="toggleBtn" @click="click">button</button> |
| 1683 | + `, |
| 1684 | + components: { |
| 1685 | + TrueBranch: { |
| 1686 | + name: 'TrueBranch', |
| 1687 | + setup() { |
| 1688 | + const instance = getCurrentInstance() |
| 1689 | + onUnmounted(() => { |
| 1690 | + unmountSpy() |
| 1691 | + setStorageContainer(instance.__keepAliveStorageContainer) |
| 1692 | + }) |
| 1693 | + const count = ref(0) |
| 1694 | + return () => h('div', count.value) |
| 1695 | + }, |
| 1696 | + }, |
| 1697 | + }, |
| 1698 | + setup: () => { |
| 1699 | + const includeRef = ref(['TrueBranch']) |
| 1700 | + const toggle = ref(true) |
| 1701 | + const click = () => { |
| 1702 | + toggle.value = !toggle.value |
| 1703 | + if (toggle.value) { |
| 1704 | + includeRef.value = ['TrueBranch'] |
| 1705 | + } else { |
| 1706 | + includeRef.value = [] |
| 1707 | + } |
| 1708 | + } |
| 1709 | + return { toggle, click, unmountSpy, includeRef } |
| 1710 | + }, |
| 1711 | + }).mount('#app') |
| 1712 | + }) |
| 1713 | + |
| 1714 | + await transitionFinish() |
| 1715 | + expect(await html('#container')).toBe('<div>0</div>') |
| 1716 | + |
| 1717 | + await click('#toggleBtn') |
| 1718 | + await transitionFinish() |
| 1719 | + expect(await html('#container')).toBe('<!--v-if-->') |
| 1720 | + expect(unmountSpy).toBeCalledTimes(1) |
| 1721 | + expect(await storageContainer!.evaluate(x => x.innerHTML)).toBe(``) |
| 1722 | + }, |
| 1723 | + E2E_TIMEOUT, |
| 1724 | + ) |
1656 | 1725 | })
|
1657 | 1726 |
|
1658 | 1727 | describe('transition with Suspense', () => {
|
|
0 commit comments