mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[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:
parent
a0421ab81f
commit
36bd641ad7
1 changed files with 4 additions and 1 deletions
|
@ -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": {}}' });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue