Skip to content

Commit

Permalink
Merge branch 'feature/trace-test-cases' of https://github.com/nidhisi…
Browse files Browse the repository at this point in the history
…nghai/observability into feature/trace-test-cases
  • Loading branch information
pratibhapandey16 committed Jun 2, 2022
2 parents 40dacc9 + 4575e40 commit d2105c0
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ describe('Testing trace view', () => {
});
});

describe('Testing traces table Pagination', () => {
describe('Testing traces table', () => {
beforeEach(() => {
cy.visit('app/observability-dashboards#/trace_analytics/traces', {
onBeforeLoad: (win) => {
Expand All @@ -124,7 +124,13 @@ describe('Testing traces table Pagination', () => {
setTimeFilter();
});

it.only('Renders the traces table pagination', () => {
it('Renders the traces table and verify Table Column, Pagination and Rows Data ', () => {
cy.get('.euiTableCellContent__text').contains('Trace ID').should('exist');
cy.get('.euiTableCellContent__text').contains('Trace group').should('exist');
cy.get('.euiTableCellContent__text').contains('Latency (ms)').should('exist');
cy.get('.euiTableCellContent__text').contains('Percentile in trace group').should('exist');
cy.get('.euiTableCellContent__text').contains('Errors').should('exist');
cy.get('.euiTableCellContent__text').contains('Last updated').should('exist');
cy.get('[data-test-subj="pagination-button-next"]').click();
cy.contains('client_pay_order').should('exist');
cy.get('[data-test-subj="pagination-button-previous"]').click();
Expand Down

0 comments on commit d2105c0

Please sign in to comment.