-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
/
Copy pathcomponentAsync.spec.ts
87 lines (74 loc) · 2.04 KB
/
componentAsync.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import Vue from '@vue/compat'
import {
DeprecationTypes,
deprecationData,
toggleDeprecationWarning,
} from '../../runtime-core/src/compat/compatConfig'
beforeEach(() => {
toggleDeprecationWarning(true)
Vue.configureCompat({
MODE: 2,
GLOBAL_MOUNT: 'suppress-warning',
})
})
afterEach(() => {
toggleDeprecationWarning(false)
Vue.configureCompat({ MODE: 3 })
})
const timeout = (n: number) => new Promise(r => setTimeout(r, n))
describe('COMPONENT_ASYNC', () => {
test('resolve/reject', async () => {
let resolve: any
const comp = (r: any) => {
resolve = r
}
const vm = new Vue({
template: `<div><comp/></div>`,
components: { comp },
}).$mount()
expect(vm.$el).toBeInstanceOf(HTMLDivElement)
expect(vm.$el.innerHTML).toBe(`<!---->`)
resolve({ template: 'foo' })
await timeout(0)
expect(vm.$el.innerHTML).toBe(`foo`)
expect(
(deprecationData[DeprecationTypes.COMPONENT_ASYNC].message as Function)(
comp,
),
).toHaveBeenWarned()
})
test('Promise', async () => {
const comp = () => Promise.resolve({ template: 'foo' })
const vm = new Vue({
template: `<div><comp/></div>`,
components: { comp },
}).$mount()
expect(vm.$el).toBeInstanceOf(HTMLDivElement)
expect(vm.$el.innerHTML).toBe(`<!---->`)
await timeout(0)
expect(vm.$el.innerHTML).toBe(`foo`)
expect(
(deprecationData[DeprecationTypes.COMPONENT_ASYNC].message as Function)(
comp,
),
).toHaveBeenWarned()
})
test('object syntax', async () => {
const comp = () => ({
component: Promise.resolve({ template: 'foo' }),
})
const vm = new Vue({
template: `<div><comp/></div>`,
components: { comp },
}).$mount()
expect(vm.$el).toBeInstanceOf(HTMLDivElement)
expect(vm.$el.innerHTML).toBe(`<!---->`)
await timeout(0)
expect(vm.$el.innerHTML).toBe(`foo`)
expect(
(deprecationData[DeprecationTypes.COMPONENT_ASYNC].message as Function)(
comp,
),
).toHaveBeenWarned()
})
})