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

[Skip Failed Tests][Unsupported FTRs] APM Cypress && Synthetics Tests #191967

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