Skip to content

Commit

Permalink
skip flaky suite (#152913)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Oct 15, 2023
1 parent fed5c52 commit ebbb1d4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});
});

describe('Table Sort', () => {
// FLAKY: https://github.com/elastic/kibana/issues/152913
describe.skip('Table Sort', () => {
type SortingMethod = (a: string, b: string) => number;
type SortDirection = 'asc' | 'desc';
// Sort by lexical order will sort by the first character of the string (case-sensitive)
Expand Down

0 comments on commit ebbb1d4

Please sign in to comment.