Disable flaky cypress SQL Lab test (#6302)
* Disable flaky cypress SQL Lab test * lint
This commit is contained in:
parent
a5b528c688
commit
d6953210b8
|
|
@ -8,7 +8,9 @@ export default () => {
|
|||
cy.visit('/superset/sqllab');
|
||||
});
|
||||
|
||||
it('creates a table schema and preview when a database, schema, and table are selected', () => {
|
||||
// TODO the test bellow is flaky, and has been disabled for the time being
|
||||
// (notice the `it.skip`)
|
||||
it.skip('creates a table preview when a database, schema, and table are selected', () => {
|
||||
cy.route('/superset/table/**').as('tableMetadata');
|
||||
|
||||
// it should have dropdowns to select database, schema, and table
|
||||
|
|
|
|||
Loading…
Reference in New Issue