Skip to content

Commit

Permalink
[8.x] [APM] Unskipping tests (#200004) (#200081)
Browse files Browse the repository at this point in the history
# Backport

This will backport the following commits from `main` to `8.x`:
- [[APM] Unskipping tests
(#200004)](#200004)

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

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

<!--BACKPORT [{"author":{"name":"Cauê
Marcondes","email":"[email protected]"},"sourceCommit":{"committedDate":"2024-11-13T19:26:12Z","message":"[APM]
Unskipping tests
(#200004)","sha":"655019354b977e513f128dcdeedf8fd8dbfcf514","branchLabelMapping":{"^v9.0.0$":"main","^v8.17.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","v9.0.0","backport:prev-minor","ci:project-deploy-observability","Team:obs-ux-infra_services","v8.17.0"],"title":"[APM]
Unskipping
tests","number":200004,"url":"https://github.com/elastic/kibana/pull/200004","mergeCommit":{"message":"[APM]
Unskipping tests
(#200004)","sha":"655019354b977e513f128dcdeedf8fd8dbfcf514"}},"sourceBranch":"main","suggestedTargetBranches":["8.x"],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","branchLabelMappingKey":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/200004","number":200004,"mergeCommit":{"message":"[APM]
Unskipping tests
(#200004)","sha":"655019354b977e513f128dcdeedf8fd8dbfcf514"}},{"branch":"8.x","label":"v8.17.0","branchLabelMappingKey":"^v8.17.0$","isSourceBranch":false,"state":"NOT_CREATED"}]}]
BACKPORT-->

Co-authored-by: Cauê Marcondes <[email protected]>
  • Loading branch information
kibanamachine and cauemarcondes authored Nov 13, 2024
1 parent eb9411c commit 014d96b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const policyFormFields = [
},
];

describe.skip('when navigating to integration page', () => {
describe('when navigating to integration page', () => {
beforeEach(() => {
const integrationsPath = '/app/integrations/browse';

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/*
* 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');
});
});

0 comments on commit 014d96b

Please sign in to comment.