Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
337 Bytes
import { describe, expect, it } from 'vitest'
import { queryKey } from '../queryKey'
describe('queryKey', () => {
it('should return a query key', () => {
const key = queryKey()
expect(key).toEqual(['query_1'])
})
it('should return a new query key each time', () => {
expect(queryKey()).not.toEqual(queryKey())
})
})