Skip to content

Commit 014d96b

Browse files
[8.x] [APM] Unskipping tests (#200004) (#200081)
# 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]>
1 parent eb9411c commit 014d96b

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

x-pack/plugins/observability_solution/apm/ftr_e2e/cypress/e2e/integration_settings/integration_policy.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const policyFormFields = [
2828
},
2929
];
3030

31-
describe.skip('when navigating to integration page', () => {
31+
describe('when navigating to integration page', () => {
3232
beforeEach(() => {
3333
const integrationsPath = '/app/integrations/browse';
3434

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
3+
* or more contributor license agreements. Licensed under the Elastic License
4+
* 2.0; you may not use this file except in compliance with the Elastic License
5+
* 2.0.
6+
*/
7+
8+
describe('APM tutorial', () => {
9+
beforeEach(() => {
10+
cy.loginAsViewerUser();
11+
cy.visitKibana('/app/home#/tutorial/apm');
12+
});
13+
14+
it('includes section for APM Server', () => {
15+
cy.contains('APM Server');
16+
cy.contains('Linux DEB');
17+
cy.contains('Linux RPM');
18+
cy.contains('Other Linux');
19+
cy.contains('macOS');
20+
cy.contains('Windows');
21+
cy.contains('Fleet');
22+
});
23+
24+
it('includes section for APM Agents', () => {
25+
cy.contains('APM agents');
26+
cy.contains('Java');
27+
cy.contains('RUM');
28+
cy.contains('Node.js');
29+
cy.contains('Django');
30+
cy.contains('Flask');
31+
cy.contains('Ruby on Rails');
32+
cy.contains('Rack');
33+
cy.contains('Go');
34+
cy.contains('.NET');
35+
cy.contains('PHP');
36+
});
37+
});

0 commit comments

Comments
 (0)