We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b67f3e1 commit 55ec30fCopy full SHA for 55ec30f
tests/common/widgets/refinement-suggestions/options.ts
@@ -3,6 +3,7 @@ import { wait } from '@instantsearch/testutils';
3
4
import type { RefinementSuggestionsWidgetSetup } from '.';
5
import type { TestOptions } from '../../common';
6
+import type { SearchResponse } from 'instantsearch.js';
7
8
export function createOptionsTests(
9
setup: RefinementSuggestionsWidgetSetup,
@@ -126,7 +127,7 @@ export function createOptionsTests(
126
127
query: '',
128
params: '',
129
},
- ],
130
+ ] as unknown as Array<SearchResponse<any>>,
131
})
132
),
133
});
0 commit comments