Skip to content

Commit

Permalink
test: Fix act errors in DndColumnSelect test (#21428)
Browse files Browse the repository at this point in the history
  • Loading branch information
lyndsiWilliams authored Sep 10, 2022
1 parent 3819d51 commit 2c7da64
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,23 @@ const defaultProps: DndColumnSelectProps = {
actions: { setControlValue: jest.fn() },
};

test('renders with default props', () => {
test('renders with default props', async () => {
render(<DndColumnSelect {...defaultProps} />, {
useDnd: true,
useRedux: true,
});
expect(screen.getByText('Drop columns here')).toBeInTheDocument();
expect(await screen.findByText('Drop columns here')).toBeInTheDocument();
});

test('renders with value', () => {
test('renders with value', async () => {
render(<DndColumnSelect {...defaultProps} value="string" />, {
useDnd: true,
useRedux: true,
});
expect(screen.getByText('Column A')).toBeInTheDocument();
expect(await screen.findByText('Column A')).toBeInTheDocument();
});

test('renders adhoc column', () => {
test('renders adhoc column', async () => {
render(
<DndColumnSelect
{...defaultProps}
Expand All @@ -61,6 +61,6 @@ test('renders adhoc column', () => {
/>,
{ useDnd: true, useRedux: true },
);
expect(screen.getByText('adhoc column')).toBeVisible();
expect(await screen.findByText('adhoc column')).toBeVisible();
expect(screen.getByLabelText('calculator')).toBeVisible();
});

0 comments on commit 2c7da64

Please sign in to comment.