Skip to content

Commit

Permalink
chore: fix type tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TkDodo committed May 10, 2024
1 parent b9cc9e4 commit 2040651
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/query-core/src/__tests__/queryClient.test-d.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { describe, expectTypeOf, it } from 'vitest'
import { QueryClient } from '../queryClient'
import type { FetchDirection } from '../query'
import type { DataTag, InfiniteData, QueryKey } from '../types'

describe('getQueryData', () => {
Expand Down Expand Up @@ -146,7 +145,7 @@ describe('defaultOptions', () => {
meta: Record<string, unknown> | undefined
signal: AbortSignal
pageParam?: unknown
direction?: FetchDirection
direction?: unknown
}>()
return Promise.resolve('data')
},
Expand Down

0 comments on commit 2040651

Please sign in to comment.