Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2022-05-10 15:27:02 +02:00
parent 95598f4fd5
commit b7efb99756
3 changed files with 3 additions and 3 deletions
@@ -109,7 +109,7 @@ describe('<SelectedKindsFilter/>', () => {
);
await userEvent.click(getByRole('combobox'));
userEvent.tab();
await userEvent.tab();
await waitFor(() => {
expect(onChange).toBeCalledWith(undefined);
@@ -101,7 +101,7 @@ describe('<SelectedRelationsFilter/>', () => {
);
await userEvent.click(getByRole('combobox'));
userEvent.tab();
await userEvent.tab();
await waitFor(() => {
expect(onChange).toBeCalledWith(undefined);
@@ -67,7 +67,7 @@ describe('<PreparePullRequestForm />', () => {
);
await act(async () => {
userEvent.clear(getByLabelText('Main Field'));
await userEvent.clear(getByLabelText('Main Field'));
await userEvent.type(getByLabelText('Main Field'), 'My Text');
await userEvent.click(getByRole('button', { name: /submit/i }));
});