Skip to content

Commit

Permalink
[Skip Failed Tests][Unsupported FTRs] APM Cypress && Synthetics Tests (
Browse files Browse the repository at this point in the history
…#191967)

See details: #191961
  • Loading branch information
wayneseymour authored Sep 3, 2024
1 parent c594254 commit 8928aeb
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ const mainApiRequestsToIntercept = [

const mainAliasNames = mainApiRequestsToIntercept.map(({ aliasName }) => `@${aliasName}`);

describe('Service inventory', () => {
// See details: https://github.com/elastic/kibana/issues/191961
describe.skip('Service inventory', () => {
before(() => {
const { rangeFrom, rangeTo } = timeRange;
synthtrace.index(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ const aliasNamesWithComparison = apiRequestsToInterceptWithComparison.map(

const aliasNames = [...aliasNamesNoComparison, ...aliasNamesWithComparison];

describe('Service Overview', () => {
// See details: https://github.com/elastic/kibana/issues/191961
describe.skip('Service Overview', () => {
before(() => {
synthtrace.index(
opbeans({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ const apisToIntercept = [
},
];

describe('Service overview: Time Comparison', () => {
// See details: https://github.com/elastic/kibana/issues/191961
describe.skip('Service overview: Time Comparison', () => {
before(() => {
synthtrace.index(
opbeans({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ const mainApiRequestsToIntercept = [

const mainAliasNames = mainApiRequestsToIntercept.map(({ aliasName }) => `@${aliasName}`);

describe('Storage Explorer', () => {
// See details: https://github.com/elastic/kibana/issues/191961
describe.skip('Storage Explorer', () => {
before(() => {
const { rangeFrom, rangeTo } = timeRange;
synthtrace.index(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ import { byTestId } from '../../helpers/utils';
import { cleanTestParams } from './services/add_monitor';
import { syntheticsAppPageProvider } from '../page_objects/synthetics_app';

journey(`GlobalParameters`, async ({ page, params }) => {
const journeySkip =
(...params: Parameters<typeof journey>) =>
() =>
journey(...params);
// See details: https://github.com/elastic/kibana/issues/191961
journeySkip(`GlobalParameters`, async ({ page, params }) => {
const syntheticsApp = syntheticsAppPageProvider({ page, kibanaUrl: params.kibanaUrl, params });

before(async () => {
Expand Down

0 comments on commit 8928aeb

Please sign in to comment.