removed e2e tests from run-tests workflow

This commit is contained in:
SPRINX0\prochazka
2025-01-29 16:02:10 +01:00
parent f22adf3cc8
commit 9309f25126
3 changed files with 14 additions and 110 deletions

View File

@@ -145,7 +145,7 @@ describe('Data browser data', () => {
cy.themeshot('perspective1');
});
it('Query editor', () => {
it('Query editor - code completion', () => {
cy.contains('MySql-connection').click();
cy.contains('MyChinook').click();
cy.contains('Customer').rightclick();
@@ -157,4 +157,17 @@ describe('Data browser data', () => {
cy.contains('ArtistId');
cy.themeshot('query');
});
it.only('Query editor - join wizard', () => {
cy.contains('MySql-connection').click();
cy.contains('MyChinook').click();
cy.testid('TabsPanel_buttonNewQuery').click();
cy.wait(1000);
cy.get('body').realType('select * from Invoice');
cy.get('body').realPress('{enter}');
cy.get('body').realPress(['Control', 'j']);
// JOIN wizard
cy.contains('INNER JOIN Customer ON Invoice.CustomerId = Customer.CustomerId');
cy.themeshot('joinwizard');
});
});