Skip to content

Commit

Permalink
[ObsUX] Unskip failing test (#196727)
Browse files Browse the repository at this point in the history
Closes #191961
  • Loading branch information
MiriamAparicio authored Oct 24, 2024
1 parent d7109d6 commit bd11d1a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ const mainApiRequestsToIntercept = [

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

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

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

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

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

// See details: https://github.com/elastic/kibana/issues/191961
// flaky test
describe.skip('Storage Explorer', () => {
before(() => {
const { rangeFrom, rangeTo } = timeRange;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const timeRange = {
rangeFrom: start,
rangeTo: end,
};

describe('Transaction details', () => {
// flaky
describe.skip('Transaction details', () => {
before(() => {
synthtrace.index(
opbeans({
Expand Down

0 comments on commit bd11d1a

Please sign in to comment.