File size: 1,038 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
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'],
      })
    })
  })
})