This is an automated email from the ASF dual-hosted git repository.
lyndsi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 2c7da649e4 test: Fix act errors in DndColumnSelect test (#21428)
2c7da649e4 is described below
commit 2c7da649e420091ae8940b56ca9b263247712d2e
Author: Lyndsi Kay Williams <[email protected]>
AuthorDate: Fri Sep 9 20:28:21 2022 -0500
test: Fix act errors in DndColumnSelect test (#21428)
---
.../controls/DndColumnSelectControl/DndColumnSelect.test.tsx | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git
a/superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.test.tsx
b/superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.test.tsx
index bc837203db..13996091e1 100644
---
a/superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.test.tsx
+++
b/superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.test.tsx
@@ -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();
});