Skip to content

Commit

Permalink
[8.x] [APM][e2e] Skip transaction_details Cypress test (#197388) (#19…
Browse files Browse the repository at this point in the history
…7443)

# Backport

This will backport the following commits from `main` to `8.x`:
- [[APM][e2e] Skip transaction_details Cypress test
(#197388)](#197388)

<!--- Backport version: 9.4.3 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Sergi
Romeu","email":"[email protected]"},"sourceCommit":{"committedDate":"2024-10-23T13:32:55Z","message":"[APM][e2e]
Skip transaction_details Cypress test (#197388)\n\n## Summary\n\nRelates
to #197386 \n\nThis PR skips the failing test, eventually we will need
to fix it and\nthe work will be handled on the parent
issue.","sha":"4568240e6420318be7f8d948c5d3e1c88b963abe","branchLabelMapping":{"^v9.0.0$":"main","^v8.17.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","v9.0.0","apm","backport:prev-minor","ci:project-deploy-observability","Team:obs-ux-infra_services","testing"],"title":"[APM][e2e]
Skip transaction_details Cypress
test","number":197388,"url":"https://github.com/elastic/kibana/pull/197388","mergeCommit":{"message":"[APM][e2e]
Skip transaction_details Cypress test (#197388)\n\n## Summary\n\nRelates
to #197386 \n\nThis PR skips the failing test, eventually we will need
to fix it and\nthe work will be handled on the parent
issue.","sha":"4568240e6420318be7f8d948c5d3e1c88b963abe"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","branchLabelMappingKey":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/197388","number":197388,"mergeCommit":{"message":"[APM][e2e]
Skip transaction_details Cypress test (#197388)\n\n## Summary\n\nRelates
to #197386 \n\nThis PR skips the failing test, eventually we will need
to fix it and\nthe work will be handled on the parent
issue.","sha":"4568240e6420318be7f8d948c5d3e1c88b963abe"}}]}]
BACKPORT-->

Co-authored-by: Sergi Romeu <[email protected]>
  • Loading branch information
kibanamachine and rmyz authored Oct 23, 2024
1 parent 35686d8 commit 0579451
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 0579451

Please sign in to comment.