[console] skip failing test on cloud (#140837) (#140853)

* [console] skip failing test on cloud

* Fix spacing

(cherry picked from commit 22e78f9bb9)

Co-authored-by: liza-mae <liza-mae@users.noreply.github.com>
This commit is contained in:
Kibana Machine 2022-09-15 13:22:14 -06:00 committed by GitHub
parent 07baccd365
commit 776e136206
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -144,7 +144,10 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
});
});
describe('multiple requests output', () => {
// Skip on cloud until issue is fixed
// Issue: https://github.com/elastic/kibana/issues/138762
describe('multiple requests output', function () {
this.tags(['skipCloudFailedTest']);
const sendMultipleRequests = async (requests: string[]) => {
await asyncForEach(requests, async (request) => {
await PageObjects.console.enterRequest(request);