mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[APM] Skip Cypress flaky tests (#136118)
* Skip APM Cypress flaky tests
This commit is contained in:
parent
6a043110cd
commit
b434817ef5
6 changed files with 9 additions and 8 deletions
|
@ -57,7 +57,7 @@ describe('Dependencies', () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe('dependency overview page', () => {
|
||||
describe.skip('dependency overview page', () => {
|
||||
it('shows dependency information and you can navigate to a page for an upstream service', () => {
|
||||
cy.visit(
|
||||
`/app/apm/backends/overview?${new URLSearchParams({
|
||||
|
|
|
@ -87,7 +87,7 @@ describe('Error details', () => {
|
|||
});
|
||||
|
||||
describe('when clicking on View x occurences in discover', () => {
|
||||
it('should redirects the user to discover', () => {
|
||||
it.skip('should redirects the user to discover', () => {
|
||||
cy.visit(errorDetailsPageHref);
|
||||
cy.contains('View 1 occurrence in Discover').click();
|
||||
cy.url().should('include', 'app/discover');
|
||||
|
|
|
@ -118,7 +118,7 @@ describe('When navigating to the service inventory', () => {
|
|||
cy.wait(mainAliasNames);
|
||||
});
|
||||
|
||||
it('when selecting a different time range and clicking the update button', () => {
|
||||
it.skip('when selecting a different time range and clicking the update button', () => {
|
||||
cy.wait(mainAliasNames);
|
||||
|
||||
cy.selectAbsoluteTimeRange(
|
||||
|
|
|
@ -89,7 +89,7 @@ describe('Service overview - header filters', () => {
|
|||
);
|
||||
});
|
||||
|
||||
it('calls APIs with correct transaction type', () => {
|
||||
it.skip('calls APIs with correct transaction type', () => {
|
||||
apisToIntercept.map(({ endpoint, name }) => {
|
||||
cy.intercept('GET', endpoint).as(name);
|
||||
});
|
||||
|
@ -117,7 +117,7 @@ describe('Service overview - header filters', () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe('Filtering by kuerybar', () => {
|
||||
describe.skip('Filtering by kuerybar', () => {
|
||||
beforeEach(() => {
|
||||
cy.loginAsViewerUser();
|
||||
});
|
||||
|
|
|
@ -90,7 +90,8 @@ describe('Instances table', () => {
|
|||
cy.contains('Service');
|
||||
});
|
||||
});
|
||||
it('shows actions available', () => {
|
||||
|
||||
it.skip('shows actions available', () => {
|
||||
apisToIntercept.map(({ endpoint, name }) => {
|
||||
cy.intercept('GET', endpoint).as(name);
|
||||
});
|
||||
|
|
|
@ -148,7 +148,7 @@ describe('Service Overview', () => {
|
|||
);
|
||||
});
|
||||
|
||||
it('persists transaction type selected when clicking on View Transactions link', () => {
|
||||
it.skip('persists transaction type selected when clicking on View Transactions link', () => {
|
||||
cy.intercept(
|
||||
'GET',
|
||||
'/internal/apm/services/opbeans-node/transaction_types?*'
|
||||
|
@ -244,7 +244,7 @@ describe('Service Overview', () => {
|
|||
cy.wait(aliasNames, { requestTimeout: 10000 });
|
||||
});
|
||||
|
||||
it('when selecting a different time range and clicking the update button', () => {
|
||||
it.skip('when selecting a different time range and clicking the update button', () => {
|
||||
cy.wait(aliasNames, { requestTimeout: 10000 });
|
||||
|
||||
const timeStart = moment(start).subtract(5, 'm').toISOString();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue