mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 04:26:01 +00:00
removed e2e tests from run-tests workflow
This commit is contained in:
@@ -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');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user