We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c5f5e3 commit 46ed5c3Copy full SHA for 46ed5c3
packages/0/src/composables/useHydration/index.test.ts
@@ -123,7 +123,7 @@ describe('useHydration', () => {
123
124
expect(mockApp.mixin).toHaveBeenCalledOnce()
125
126
- const mixinOptions = mockApp.mixin.mock.calls[0][0]
+ const mixinOptions = mockApp.mixin.mock.calls[0]![0]
127
expect(mixinOptions).toHaveProperty('mounted')
128
expect(typeof mixinOptions.mounted).toBe('function')
129
})
@@ -138,7 +138,7 @@ describe('useHydration', () => {
138
139
plugin.install(mockApp as any)
140
141
142
const mountedCallback = mixinOptions.mounted
143
144
const rootComponent = { $parent: null }
0 commit comments