Skip to content

Commit 5c1c4cc

Browse files
committed
fix lint
1 parent 57dfd44 commit 5c1c4cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/instantsearch.js/src/lib/utils/__tests__/hydrateSearchClient-test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ describe('hydrateSearchClient', () => {
249249

250250
it('should not throw if search requires to be bound (v5)', async () => {
251251
const send = jest.fn().mockResolvedValue({ status: 200, content: '{}' });
252-
const searchClient = algoliasearchV5('appId', 'apiKey', {
252+
const searchClient: any = algoliasearchV5('appId', 'apiKey', {
253253
requester: {
254254
send,
255255
},
@@ -264,7 +264,7 @@ describe('hydrateSearchClient', () => {
264264

265265
it('should not throw if search requires to be bound (v4)', async () => {
266266
const send = jest.fn().mockResolvedValue({ status: 200, content: '{}' });
267-
const searchClient = algoliasearchV4('appId', 'apiKey', {
267+
const searchClient: any = algoliasearchV4('appId', 'apiKey', {
268268
requester: {
269269
send,
270270
},

0 commit comments

Comments
 (0)