[Dashboard] Re-skip flaky flyout tests (#160427)

Closes https://github.com/elastic/kibana/issues/159933
Closes https://github.com/elastic/kibana/issues/159932
Closes https://github.com/elastic/kibana/issues/159931

## Summary

https://github.com/elastic/kibana/pull/160187 didn't work as a fix, so
re-skipping these tests **just for 8.8** as described
[here](https://github.com/elastic/kibana/issues/159931#issuecomment-1602793541)

### Checklist

- [x] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios

### For maintainers

- [ ] This was checked for breaking API changes and was [labeled
appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
This commit is contained in:
Hannah Mudge 2023-06-23 10:23:17 -06:00 committed by GitHub
parent 913ea518cc
commit 03eddedbc7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -135,7 +135,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
});
});
describe('using a pinned filter that excludes all data', () => {
// FLAKY: https://github.com/elastic/kibana/issues/159931
// FLAKY: https://github.com/elastic/kibana/issues/159932
describe.skip('using a pinned filter that excludes all data', () => {
before(async () => {
// Functional tests clear session storage after each suite, so it is important to repopulate unsaved panels
await populateDashboard();
@ -196,7 +198,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
});
});
describe('disabling a filter unfilters the data on', function () {
// FLAKY: https://github.com/elastic/kibana/issues/159933
describe.skip('disabling a filter unfilters the data on', function () {
before(async () => {
// Functional tests clear session storage after each suite, so it is important to repopulate unsaved panels
await populateDashboard();