Skip to content

Commit

Permalink
[APM][e2e] Skip transaction_details Cypress test (#197388)
Browse files Browse the repository at this point in the history
## Summary

Relates to #197386 

This PR skips the failing test, eventually we will need to fix it and
the work will be handled on the parent issue.
  • Loading branch information
rmyz authored Oct 23, 2024
1 parent 0a0c3fa commit 4568240
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ describe('Transaction details', () => {
cy.loginAsViewerUser();
});

it('shows transaction name and transaction charts', () => {
// skipping this as it´s been failing a lot lately, more information here https://github.com/elastic/kibana/issues/197386
it.skip('shows transaction name and transaction charts', () => {
cy.intercept('GET', '/internal/apm/services/opbeans-java/transactions/charts/latency?*').as(
'transactionLatencyRequest'
);
Expand Down Expand Up @@ -106,8 +107,8 @@ describe('Transaction details', () => {
);
cy.contains('Create SLO');
});

it('shows top errors table', () => {
// skipping this as it´s been failing a lot lately, more information here https://github.com/elastic/kibana/issues/197386
it.skip('shows top errors table', () => {
cy.visitKibana(
`/app/apm/services/opbeans-java/transactions/view?${new URLSearchParams({
...timeRange,
Expand Down

0 comments on commit 4568240

Please sign in to comment.