Skip to content

Commit

Permalink
skip failing test suite (#175984)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz committed Jan 31, 2024
1 parent ae52d87 commit 399a3c4
Showing 1 changed file with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ const mockConfig = {
customHeight: 324,
};

describe('BarChartBaseComponent', () => {
// Failing: See https://github.com/elastic/kibana/issues/175984
describe.skip('BarChartBaseComponent', () => {
let shallowWrapper: ShallowWrapper;
const mockBarChartData: ChartSeriesData[] = [
{
Expand Down Expand Up @@ -296,7 +297,8 @@ describe('BarChartBaseComponent', () => {
});
});

describe.each(chartDataSets)('BarChart with valid data [%o]', (data) => {
// Failing: See https://github.com/elastic/kibana/issues/175984
describe.skip.each(chartDataSets)('BarChart with valid data [%o]', (data) => {
let shallowWrapper: ShallowWrapper;

beforeAll(() => {
Expand All @@ -313,7 +315,8 @@ describe.each(chartDataSets)('BarChart with valid data [%o]', (data) => {
});
});

describe.each(chartDataSets)('BarChart with stackByField', () => {
// Failing: See https://github.com/elastic/kibana/issues/175984
describe.skip.each(chartDataSets)('BarChart with stackByField', () => {
let wrapper: ReactWrapper;

const data = [
Expand Down Expand Up @@ -388,7 +391,8 @@ describe.each(chartDataSets)('BarChart with stackByField', () => {
});
});

describe.each(chartDataSets)('BarChart with custom color', () => {
// Failing: See https://github.com/elastic/kibana/issues/175984
describe.skip.each(chartDataSets)('BarChart with custom color', () => {
let wrapper: ReactWrapper;

const data = [
Expand Down Expand Up @@ -451,7 +455,8 @@ describe.each(chartDataSets)('BarChart with custom color', () => {
});
});

describe.each(chartHolderDataSets)('BarChart with invalid data [%o]', (data) => {
// Failing: See https://github.com/elastic/kibana/issues/175984
describe.skip.each(chartHolderDataSets)('BarChart with invalid data [%o]', (data) => {
let shallowWrapper: ShallowWrapper;

beforeAll(() => {
Expand Down

0 comments on commit 399a3c4

Please sign in to comment.