Skip to content

Commit

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

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

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

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

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

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

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

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

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

beforeAll(() => {
Expand Down

0 comments on commit b2bde8b

Please sign in to comment.