[8.x] [APM] Skip transaction details test and removing tutorial tests (#199336) (#199436)

# Backport

This will backport the following commits from `main` to `8.x`:
- [[APM] Skip transaction details test and removing tutorial tests
(#199336)](https://github.com/elastic/kibana/pull/199336)

<!--- Backport version: 8.9.8 -->

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

<!--BACKPORT [{"author":{"name":"Cauê
Marcondes","email":"55978943+cauemarcondes@users.noreply.github.com"},"sourceCommit":{"committedDate":"2024-11-07T22:15:33Z","message":"[APM]
Skip transaction details test and removing tutorial tests
(#199336)\n\nIt is what it
is!","sha":"a35f9ced3a190bd6beac11f67d2ae777902fb67a","branchLabelMapping":{"^v9.0.0$":"main","^v8.17.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","backport:skip","v9.0.0","ci:project-deploy-observability","Team:obs-ux-infra_services"],"number":199336,"url":"https://github.com/elastic/kibana/pull/199336","mergeCommit":{"message":"[APM]
Skip transaction details test and removing tutorial tests
(#199336)\n\nIt is what it
is!","sha":"a35f9ced3a190bd6beac11f67d2ae777902fb67a"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","labelRegex":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/199336","number":199336,"mergeCommit":{"message":"[APM]
Skip transaction details test and removing tutorial tests
(#199336)\n\nIt is what it
is!","sha":"a35f9ced3a190bd6beac11f67d2ae777902fb67a"}}]}] BACKPORT-->
This commit is contained in:
Cauê Marcondes 2024-11-08 11:37:13 +00:00 committed by GitHub
parent beb7cfa9fc
commit ec7ee003dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 40 deletions

View file

@ -28,7 +28,7 @@ const policyFormFields = [
},
];
describe('when navigating to integration page', () => {
describe.skip('when navigating to integration page', () => {
beforeEach(() => {
const integrationsPath = '/app/integrations/browse';

View file

@ -15,8 +15,8 @@ const timeRange = {
rangeFrom: start,
rangeTo: end,
};
describe('Transaction details', () => {
// flaky
describe.skip('Transaction details', () => {
before(() => {
synthtrace.index(
opbeans({

View file

@ -1,37 +0,0 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
describe('APM tutorial', () => {
beforeEach(() => {
cy.loginAsViewerUser();
cy.visitKibana('/app/home#/tutorial/apm');
});
it('includes section for APM Server', () => {
cy.contains('APM Server');
cy.contains('Linux DEB');
cy.contains('Linux RPM');
cy.contains('Other Linux');
cy.contains('macOS');
cy.contains('Windows');
cy.contains('Fleet');
});
it('includes section for APM Agents', () => {
cy.contains('APM agents');
cy.contains('Java');
cy.contains('RUM');
cy.contains('Node.js');
cy.contains('Django');
cy.contains('Flask');
cy.contains('Ruby on Rails');
cy.contains('Rack');
cy.contains('Go');
cy.contains('.NET');
cy.contains('PHP');
});
});