mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Fix flaky context filters tests (#21511)
This commit is contained in:
parent
93f9251418
commit
4bd7b74e99
1 changed files with 3 additions and 4 deletions
|
@ -31,9 +31,8 @@ export default function ({ getService, getPageObjects }) {
|
|||
const filterBar = getService('filterBar');
|
||||
const PageObjects = getPageObjects(['common', 'context']);
|
||||
|
||||
// Flaky: https://github.com/elastic/kibana/issues/16002
|
||||
describe.skip('context filters', function contextSize() {
|
||||
before(async function () {
|
||||
describe('context filters', function contextSize() {
|
||||
beforeEach(async function () {
|
||||
await PageObjects.context.navigateTo(TEST_INDEX_PATTERN, TEST_ANCHOR_TYPE, TEST_ANCHOR_ID, {
|
||||
columns: TEST_COLUMN_NAMES,
|
||||
});
|
||||
|
@ -64,7 +63,7 @@ export default function ({ getService, getPageObjects }) {
|
|||
|
||||
it('should be toggleable via the filter bar', async function () {
|
||||
const table = await docTable.getTable();
|
||||
|
||||
await filterBar.addFilter(TEST_ANCHOR_FILTER_FIELD, 'IS', TEST_ANCHOR_FILTER_VALUE);
|
||||
await filterBar.toggleFilterEnabled(TEST_ANCHOR_FILTER_FIELD);
|
||||
await PageObjects.context.waitUntilContextLoadingHasFinished();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue