Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[8.x] [APM] Unskipping tests (#200004) #200081

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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');
});
});