Skip to content

Commit 69476f0

Browse files
kickbelldevTkDodo
andauthoredOct 1, 2024··
test(vue-query): add test and improve typing (#8103)
* test(vue-query): add test for clone getters returning values in queryKey * fix(vue-query): improve typing in vueQueryPlugin.test.ts to resolve errors on tsc --------- Co-authored-by: Dominik Dorfmeister <office@dorfmeister.cc>
1 parent 71c5f88 commit 69476f0

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed
 

‎packages/vue-query/src/__tests__/utils.test.ts

+6
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,12 @@ describe('utils', () => {
142142
})
143143
})
144144

145+
test('should clone getters returning values in queryKey', () => {
146+
const val = ref({ queryKey: [1, 2, () => '3'] })
147+
const cp = cloneDeepUnref(val)
148+
expect(cp).toStrictEqual({ queryKey: [1, 2, '3'] })
149+
})
150+
145151
test('should unref undefined', () => {
146152
expect(cloneDeepUnref(ref(undefined))).toBe(undefined)
147153
})

‎packages/vue-query/src/__tests__/vueQueryPlugin.test.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ vi.mock('../devtools/devtools')
1414
vi.mock('../useQueryClient')
1515
vi.mock('../useBaseQuery')
1616

17+
type UnmountCallback = () => void
18+
1719
interface TestApp extends App {
18-
onUnmount: Function
19-
_unmount: Function
20+
onUnmount: UnmountCallback
21+
_unmount: UnmountCallback
2022
_mixin: ComponentOptions
2123
_provided: Record<string, any>
2224
$root: TestApp
@@ -29,11 +31,11 @@ function getAppMock(withUnmountHook = false): TestApp {
2931
provide: vi.fn(),
3032
unmount: vi.fn(),
3133
onUnmount: withUnmountHook
32-
? vi.fn((u: Function) => {
34+
? vi.fn((u: UnmountCallback) => {
3335
mock._unmount = u
3436
})
3537
: undefined,
36-
mixin: (m: ComponentOptions): any => {
38+
mixin: (m: ComponentOptions) => {
3739
mock._mixin = m
3840
},
3941
} as unknown as TestApp

0 commit comments

Comments
 (0)
Please sign in to comment.