| import { beforeAll, describe, expect, test, vi } from 'vitest' | |
| import { ref } from 'vue-demi' | |
| import { MutationCache as MutationCacheOrigin } from '@tanstack/query-core' | |
| import { MutationCache } from '../mutationCache' | |
| describe('MutationCache', () => { | |
| beforeAll(() => { | |
| vi.spyOn(MutationCacheOrigin.prototype, 'find') | |
| vi.spyOn(MutationCacheOrigin.prototype, 'findAll') | |
| }) | |
| describe('find', () => { | |
| test('should properly unwrap parameters', () => { | |
| const mutationCache = new MutationCache() | |
| mutationCache.find({ | |
| mutationKey: ref(['baz']), | |
| }) | |
| expect(MutationCacheOrigin.prototype.find).toBeCalledWith({ | |
| mutationKey: ['baz'], | |
| }) | |
| }) | |
| }) | |
| describe('findAll', () => { | |
| test('should properly unwrap parameters', () => { | |
| const mutationCache = new MutationCache() | |
| mutationCache.findAll({ | |
| mutationKey: ref(['baz']), | |
| }) | |
| expect(MutationCacheOrigin.prototype.findAll).toBeCalledWith({ | |
| mutationKey: ['baz'], | |
| }) | |
| }) | |
| }) | |
| }) | |