[Console] Skip test that is still flaky (#193288)

## Summary

This test seems to pass in flaky test runner and in CI, but after its
merged it becomes flaky.
This commit is contained in:
Ignacio Rivas 2024-09-18 15:47:58 +03:00 committed by GitHub
parent a0421ab81f
commit 36bd641ad7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -65,7 +65,10 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {
});
});
describe('with variables in request body', () => {
// Flaky: https://github.com/elastic/kibana/issues/157776
// Beware that this test will pass locally and in flaky test runner, but it
// will fail after merged.
describe.skip('with variables in request body', () => {
it('should send a successful request', async () => {
await PageObjects.console.openConfig();
await PageObjects.console.addNewVariable({ name: 'query1', value: '{"match_all": {}}' });