9 lines
375 B
TypeScript
9 lines
375 B
TypeScript
import { waitFor } from '@testing-library/react';
|
|
import { select } from 'react-select-event';
|
|
|
|
// Used to select an option or options from a Select in unit tests
|
|
export const selectOptionInTest = async (
|
|
input: HTMLElement,
|
|
optionOrOptions: string | RegExp | Array<string | RegExp>
|
|
) => await waitFor(() => select(input, optionOrOptions, { container: document.body }));
|