File size: 916 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
import React from 'react';
import { InstantSearch } from 'react-instantsearch-hooks';
import { createSearchClient } from '../mock';
import type { InstantSearchProps } from 'react-instantsearch-hooks';
const searchClient = createSearchClient({});
type InstantSearchHooksTestWrapperProps = {
children: React.ReactNode;
} & Partial<InstantSearchProps>;
export function InstantSearchHooksTestWrapper({
children,
...props
}: InstantSearchHooksTestWrapperProps) {
return (
<InstantSearch searchClient={searchClient} indexName="indexName" {...props}>
{children}
</InstantSearch>
);
}
export function createInstantSearchTestWrapper(
props?: Partial<InstantSearchProps>
) {
const client = createSearchClient({});
const wrapper = ({ children }) => (
<InstantSearch searchClient={client} indexName="indexName" {...props}>
{children}
</InstantSearch>
);
return wrapper;
}
|