Skip to content

Commit

Permalink
removed commented code
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Sebastian <[email protected]>
  • Loading branch information
paulstn committed Oct 4, 2023
1 parent 7a62ed0 commit 6bb939f
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ describe('Test PPL UI', () => {

it('Test full screen view', () => {
cy.get('.euiButton__text').contains('Full screen view').should('not.exist');
// cy.get('.euiTitle').contains('Query Workbench').should('exist');

cy.get('textarea.ace_text-input')
.eq(0)
Expand All @@ -104,12 +103,10 @@ describe('Test PPL UI', () => {
.contains('Full screen view')
.click({ force: true });

// cy.get('.euiTitle').should('not.exist');

cy.get('button#exit-fullscreen-button').click({ force: true });
cy.wait(QUERY_WORKBENCH_DELAY);
cy.get('.euiButton__text').contains('Full screen view').should('exist');
// cy.get('.euiTitle').contains('Query Workbench').should('exist');
});
});

Expand Down Expand Up @@ -179,15 +176,13 @@ describe('Test SQL UI', () => {

it('Test full screen view', () => {
cy.get('.euiButton__text').contains('Full screen view').should('not.exist');
// cy.get('.euiTitle').contains('Query Workbench').should('exist');

cy.get('.euiButton__text').contains('Run').click({ force: true });
cy.wait(QUERY_WORKBENCH_DELAY * 5);
cy.get('.euiButton__text')
.contains('Full screen view')
.click({ force: true });

// cy.get('.euiTitle').should('not.exist');
});
});

Expand Down

0 comments on commit 6bb939f

Please sign in to comment.