Skip to content

Commit

Permalink
test: Fix act error in ExportToCVSDropdown test (#21401)
Browse files Browse the repository at this point in the history
  • Loading branch information
lyndsiWilliams authored Sep 9, 2022
1 parent 9318e26 commit 6fad3f9
Showing 1 changed file with 17 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,27 @@
*/
import React from 'react';
import userEvent from '@testing-library/user-event';
import { render, screen } from 'spec/helpers/testing-library';
import { render, screen, waitFor } from 'spec/helpers/testing-library';
import { ExportToCSVDropdown } from './index';

const exportCSVOriginal = jest.fn();
const exportCSVPivoted = jest.fn();

test('Dropdown button with menu renders', () => {
render(
<ExportToCSVDropdown
exportCSVOriginal={exportCSVOriginal}
exportCSVPivoted={exportCSVPivoted}
>
<div>.CSV</div>
</ExportToCSVDropdown>,
const waitForRender = () => {
waitFor(() =>
render(
<ExportToCSVDropdown
exportCSVOriginal={exportCSVOriginal}
exportCSVPivoted={exportCSVPivoted}
>
<div>.CSV</div>
</ExportToCSVDropdown>,
),
);
};

test('Dropdown button with menu renders', () => {
waitForRender();

expect(screen.getByText('.CSV')).toBeVisible();

Expand All @@ -43,14 +49,7 @@ test('Dropdown button with menu renders', () => {
});

test('Call export csv original on click', () => {
render(
<ExportToCSVDropdown
exportCSVOriginal={exportCSVOriginal}
exportCSVPivoted={exportCSVPivoted}
>
<div>.CSV</div>
</ExportToCSVDropdown>,
);
waitForRender();

userEvent.click(screen.getByText('.CSV'));
userEvent.click(screen.getByText('Original'));
Expand All @@ -59,14 +58,7 @@ test('Call export csv original on click', () => {
});

test('Call export csv pivoted on click', () => {
render(
<ExportToCSVDropdown
exportCSVOriginal={exportCSVOriginal}
exportCSVPivoted={exportCSVPivoted}
>
<div>.CSV</div>
</ExportToCSVDropdown>,
);
waitForRender();

userEvent.click(screen.getByText('.CSV'));
userEvent.click(screen.getByText('Pivoted'));
Expand Down

0 comments on commit 6fad3f9

Please sign in to comment.