fix: most Recently Selected Table Should Appear at the Top of the List on the Left Panel (#19258)

This commit is contained in:
Diego Medina
2022-03-21 17:58:23 -04:00
committed by GitHub
parent 29cba2b00c
commit 4669b6ce11
3 changed files with 15 additions and 10 deletions

View File

@@ -725,7 +725,7 @@ describe('async actions', () => {
describe('addTable', () => {
it('updates the table schema state in the backend', () => {
expect.assertions(5);
expect.assertions(6);
const database = { disable_data_preview: true };
const tableName = 'table';
@@ -743,6 +743,7 @@ describe('async actions', () => {
expect(store.getActions().map(a => a.type)).toEqual(
expectedActionTypes,
);
expect(store.getActions()[0].prepend).toBeTruthy();
expect(fetchMock.calls(updateTableSchemaEndpoint)).toHaveLength(1);
expect(fetchMock.calls(getTableMetadataEndpoint)).toHaveLength(1);
expect(fetchMock.calls(getExtraTableMetadataEndpoint)).toHaveLength(