|
|
@@ -24,7 +24,7 @@ describe('compiler + runtime integration', () => {
|
|
|
mounted: jest.fn(),
|
|
|
activated: jest.fn(),
|
|
|
deactivated: jest.fn(),
|
|
|
- destroyed: jest.fn()
|
|
|
+ unmounted: jest.fn()
|
|
|
}
|
|
|
|
|
|
const toggle = ref(true)
|
|
|
@@ -50,7 +50,7 @@ describe('compiler + runtime integration', () => {
|
|
|
expect(one.mounted).toHaveBeenCalledTimes(1)
|
|
|
expect(one.activated).toHaveBeenCalledTimes(1)
|
|
|
expect(one.deactivated).toHaveBeenCalledTimes(0)
|
|
|
- expect(one.destroyed).toHaveBeenCalledTimes(0)
|
|
|
+ expect(one.unmounted).toHaveBeenCalledTimes(0)
|
|
|
|
|
|
toggle.value = false
|
|
|
await nextTick()
|
|
|
@@ -59,7 +59,7 @@ describe('compiler + runtime integration', () => {
|
|
|
expect(one.mounted).toHaveBeenCalledTimes(1)
|
|
|
expect(one.activated).toHaveBeenCalledTimes(1)
|
|
|
expect(one.deactivated).toHaveBeenCalledTimes(1)
|
|
|
- expect(one.destroyed).toHaveBeenCalledTimes(0)
|
|
|
+ expect(one.unmounted).toHaveBeenCalledTimes(0)
|
|
|
|
|
|
toggle.value = true
|
|
|
await nextTick()
|
|
|
@@ -68,7 +68,7 @@ describe('compiler + runtime integration', () => {
|
|
|
expect(one.mounted).toHaveBeenCalledTimes(1)
|
|
|
expect(one.activated).toHaveBeenCalledTimes(2)
|
|
|
expect(one.deactivated).toHaveBeenCalledTimes(1)
|
|
|
- expect(one.destroyed).toHaveBeenCalledTimes(0)
|
|
|
+ expect(one.unmounted).toHaveBeenCalledTimes(0)
|
|
|
})
|
|
|
|
|
|
it('should support runtime template via CSS ID selector', () => {
|