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 7538e55 commit 29a4226Copy full SHA for 29a4226
packages/solid-query/src/__tests__/queryOptions.test.tsx
@@ -1,10 +1,9 @@
1
import { describe, expect, it } from 'vitest'
2
import { queryOptions } from '../queryOptions'
3
-import type { SolidQueryOptions } from '../types'
4
5
describe('queryOptions', () => {
6
it('should return the object received as a parameter without any modification.', () => {
7
- const object: SolidQueryOptions = {
+ const object = {
8
queryKey: ['key'],
9
queryFn: () => Promise.resolve(5),
10
} as const
0 commit comments