Skip to content

Commit a4dd3f2

Browse files
authored
[Discover] Improve a11y test when switching to context (#67363) (#67733)
1 parent 04745ae commit a4dd3f2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/accessibility/apps/discover.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
3434
['geo.src', 'IN'],
3535
];
3636

37-
// FLAKY: https://github.com/elastic/kibana/issues/62497
38-
describe.skip('Discover', () => {
37+
describe('Discover', () => {
3938
before(async () => {
4039
await esArchiver.load('discover');
4140
await esArchiver.loadIfNeeded('logstash_functional');
@@ -133,9 +132,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
133132

134133
// Context view test
135134
it('should open context view on a doc', async () => {
136-
await docTable.clickRowToggle();
137-
// click the open action
138135
await retry.try(async () => {
136+
await docTable.clickRowToggle();
137+
// click the open action
139138
const rowActions = await docTable.getRowActions();
140139
if (!rowActions.length) {
141140
throw new Error('row actions empty, trying again');

0 commit comments

Comments
 (0)