Skip to content

Commit

Permalink
Temporarily disable tests caused by possible ES regression
Browse files Browse the repository at this point in the history
#61366

Signed-off-by: Tyler Smalley <[email protected]>
  • Loading branch information
Tyler Smalley committed Mar 25, 2020
1 parent eb46653 commit d815619
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion test/functional/apps/discover/_errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ export default function({ getService, getPageObjects }) {
await esArchiver.unload('invalid_scripted_field');
});

describe('invalid scripted field error', () => {
// https:/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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ export default function({ getService }) {
return esArchiver.unload(archive);
});

it('should return data for 2 active nodes', async () => {
// https:/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')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ export default function({ getService, getPageObjects }) {
await tearDown();
});

it('should have an Elasticsearch Cluster Summary Status with correct info', async () => {
// https:/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',
Expand Down

0 comments on commit d815619

Please sign in to comment.