Skip to content

Commit

Permalink
fix: Disable lazy loading for the Database selector (apache#16908)
Browse files Browse the repository at this point in the history
* fix: Disable lazy loading for the Database selector

* Fixes the tests
  • Loading branch information
michael-s-molina authored Sep 30, 2021
1 parent a5914c7 commit 7aa59c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ test('Refresh should work', async () => {
userEvent.click(select);

await waitFor(() => {
expect(SupersetClientGet).toBeCalledTimes(1);
expect(SupersetClientGet).toBeCalledTimes(2);
expect(props.getDbList).toBeCalledTimes(0);
expect(props.getTableList).toBeCalledTimes(0);
expect(props.handleError).toBeCalledTimes(0);
Expand All @@ -193,8 +193,8 @@ test('Refresh should work', async () => {
userEvent.click(screen.getByRole('button', { name: 'refresh' }));

await waitFor(() => {
expect(SupersetClientGet).toBeCalledTimes(2);
expect(props.getDbList).toBeCalledTimes(0);
expect(SupersetClientGet).toBeCalledTimes(3);
expect(props.getDbList).toBeCalledTimes(1);
expect(props.getTableList).toBeCalledTimes(0);
expect(props.handleError).toBeCalledTimes(0);
expect(props.onDbChange).toBeCalledTimes(0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ export default function DatabaseSelector({
ariaLabel={t('Select database or type database name')}
data-test="select-database"
header={<FormLabel>{t('Database')}</FormLabel>}
lazyLoading={false}
onChange={changeDataBase}
value={currentDb}
placeholder={t('Select database or type database name')}
Expand Down

0 comments on commit 7aa59c3

Please sign in to comment.