[APM] Skip Cypress flaky tests (#136118)

* Skip APM Cypress flaky tests
This commit is contained in:
Giorgos Bamparopoulos 2022-07-11 19:12:53 +01:00 committed by GitHub
parent 6a043110cd
commit b434817ef5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 8 deletions

View file

@ -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({

View file

@ -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');

View file

@ -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(

View file

@ -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();
});

View file

@ -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);
});

View file

@ -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();