mirror of
https://github.com/apache/superset.git
synced 2026-05-06 16:34:32 +00:00
fix: params in sql lab are jumpy in the ace editor (#16536)
* fix jumpy params
* remove cypress tests
(cherry picked from commit 519baa6f00)
This commit is contained in:
committed by
Steven Uray
parent
37c2020035
commit
cc821bb747
@@ -613,7 +613,7 @@ describe('async actions', () => {
|
||||
|
||||
describe('queryEditorSetSql', () => {
|
||||
describe('with backend persistence flag on', () => {
|
||||
it('does not update the tab state in the backend', () => {
|
||||
it('updates the tab state in the backend', () => {
|
||||
expect.assertions(2);
|
||||
|
||||
const sql = 'SELECT * ';
|
||||
@@ -629,7 +629,7 @@ describe('async actions', () => {
|
||||
});
|
||||
});
|
||||
describe('with backend persistence flag off', () => {
|
||||
it('updates the tab state in the backend', () => {
|
||||
it('does not update the tab state in the backend', () => {
|
||||
const backendPersistenceOffMock = jest
|
||||
.spyOn(featureFlags, 'isFeatureEnabled')
|
||||
.mockImplementation(
|
||||
|
||||
Reference in New Issue
Block a user