mirror of
https://github.com/apache/superset.git
synced 2026-04-22 17:45:21 +00:00
fix(sqllab): Fix autocomplete for SQL Lab (#22329)
This commit is contained in:
committed by
GitHub
parent
5e1b8170ca
commit
96de314c0c
@@ -110,8 +110,8 @@ test('should toggle the table when the header is clicked', async () => {
|
||||
userEvent.click(header);
|
||||
|
||||
await waitFor(() => {
|
||||
expect(store.getActions()).toHaveLength(2);
|
||||
expect(store.getActions()[1].type).toEqual('COLLAPSE_TABLE');
|
||||
expect(store.getActions()).toHaveLength(4);
|
||||
expect(store.getActions()[3].type).toEqual('COLLAPSE_TABLE');
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user