Fix and reenable Rollup JobList client integration tests. (#34215) (#34253)

This commit is contained in:
Sébastien Loix 2019-04-01 18:09:35 +02:00 committed by CJ Cenizal
parent cc171423ec
commit bb7ea37315

View file

@ -66,8 +66,7 @@ const loadJobsMock = {
}]
};
// FAILING: https://github.com/elastic/kibana/issues/34206
describe.skip('<JobList />', () => {
describe('<JobList />', () => {
describe('detail panel', () => {
let server;
let component;
@ -94,8 +93,8 @@ describe.skip('<JobList />', () => {
JSON.stringify(loadJobsMock),
]);
// Mock all user actions tracking
server.respondWith('POST', /\/api\/user_action/, [200, { 'Content-Type': 'application/json' }, '']);
// Mock all other HTTP Requests
server.respondWith([200, {}, '']);
const initTestBed = registerTestBed(JobList, {}, createRollupJobsStore());
({ component, exists, getMetadataFromEuiTable } = initTestBed(undefined, testBedOptions));