remove test that's been skipped since opening xpack

This commit is contained in:
spalger 2019-12-13 15:32:19 -07:00
parent 614bde927e
commit 5feb376aac

View file

@ -77,39 +77,5 @@ export default function ({ getService, getPageObjects }) {
});
});
});
describe('Deleted Index', () => {
const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects);
before(async () => {
await setup('monitoring/singlecluster-red-platinum', {
from: 'Oct 6, 2017 @ 19:53:06.748',
to: 'Oct 6, 2017 @ 20:15:30.212'
});
// go to indices listing
await overview.clickEsIndices();
expect(await indicesList.isOnListing()).to.be(true);
});
after(async () => {
await tearDown();
});
it.skip('should have an index summary with NA for deleted index', async () => {
await indicesList.setFilter('deleted');
await indicesList.clickRowByName('many-0001_clruksahirti');
expect(await indexDetail.getSummary()).to.eql({
dataSize: 'Total:\n3.6 KB',
dataSizePrimaries: 'Primaries:\n3.6 KB',
documentCount: 'Documents:\n1',
totalShards: 'Total Shards:\nN/A',
unassignedShards: 'Unassigned Shards:\nN/A',
health: 'Health: Not Available',
});
});
});
});
}