forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[APM] Unskipping tests (elastic#200004)
- Loading branch information
1 parent
1f5fe1d
commit 6550193
Showing
2 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
x-pack/plugins/observability_solution/apm/ftr_e2e/cypress/e2e/tutorial/tutorial.cy.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); | ||
}); | ||
}); |