Revert "chore: Changes the DatabaseSelector to use the new Select component (#16334)" (#16478)

This reverts commit c768941f2f.
This commit is contained in:
Erik Ritter
2021-08-26 18:28:04 -07:00
committed by GitHub
parent a413f796a6
commit 8adc31d14c
16 changed files with 841 additions and 702 deletions

View File

@@ -81,13 +81,9 @@ describe('Left Panel Expansion', () => {
</Provider>
</ThemeProvider>,
);
const dbSelect = screen.getByRole('combobox', {
name: 'Select a database',
});
const schemaSelect = screen.getByRole('combobox', {
name: 'Select a schema',
});
const dropdown = screen.getByText(/Select a table/i);
const dbSelect = screen.getByText(/select a database/i);
const schemaSelect = screen.getByText(/select a schema \(0\)/i);
const dropdown = screen.getByText(/Select table/i);
const abUser = screen.getByText(/ab_user/i);
expect(dbSelect).toBeInTheDocument();
expect(schemaSelect).toBeInTheDocument();