mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
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:
parent
fcad526e5c
commit
620b088f57
3 changed files with 6 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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')
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue