Skip to content
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,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', () => {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this needed? Yesterday I skipped 2 flaky tests from this suite

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's better to skip the whole test suite as we don't know exactly what's the issue here

before(() => {
synthtrace.index(
opbeans({
Expand Down