Temporarily disable tests caused by possible ES regression

https://github.com/elastic/kibana/issues/61366

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
Tyler Smalley 2020-03-25 15:35:33 -07:00
parent fcad526e5c
commit 620b088f57
3 changed files with 6 additions and 3 deletions

View file

@ -35,7 +35,8 @@ export default function({ getService, getPageObjects }) {
await esArchiver.unload('invalid_scripted_field');
});
describe('invalid scripted field error', () => {
// https://github.com/elastic/kibana/issues/61366
describe.skip('invalid scripted field error', () => {
it('is rendered', async () => {
const isFetchErrorVisible = await testSubjects.exists('discoverFetchError');
expect(isFetchErrorVisible).to.be(true);

View file

@ -34,7 +34,8 @@ export default function({ getService }) {
return esArchiver.unload(archive);
});
it('should return data for 2 active nodes', async () => {
// https://github.com/elastic/kibana/issues/61366
it.skip('should return data for 2 active nodes', async () => {
const { body } = await supertest
.post('/api/monitoring/v1/clusters/fHJwISmKTFO8bj57oFBLUQ/elasticsearch/nodes')
.set('kbn-xsrf', 'xxx')

View file

@ -34,7 +34,8 @@ export default function({ getService, getPageObjects }) {
await tearDown();
});
it('should have an Elasticsearch Cluster Summary Status with correct info', async () => {
// https://github.com/elastic/kibana/issues/61366
it.skip('should have an Elasticsearch Cluster Summary Status with correct info', async () => {
expect(await esClusterSummaryStatus.getContent()).to.eql({
nodesCount: 'Nodes\n2',
indicesCount: 'Indices\n20',