Skip to content

Commit 6550193

Browse files
[APM] Unskipping tests (#200004)
1 parent 1f5fe1d commit 6550193

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)