mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
test: Fix act errors in DndColumnSelect test (#21428)
This commit is contained in:
committed by
GitHub
parent
3819d5154a
commit
2c7da649e4
@@ -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}
|
||||
@@ -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();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user