Skip to content

Commit

Permalink
[infra] Disable flaky ML job ID format test suite (elastic#171915)
Browse files Browse the repository at this point in the history
These tests rely on using browser performance timings to extract URLs
used when resolving ML job IDs to check if the right format is used and
updated when migrating to the new format.
Because this change is transparent to the user there isn't any way to
test the behaviour through UI elements and due to the structure of the
state management it's not straight forward to test it in isolation.

elastic#171913 has been opened to
refactor the state management which should allow for this tests to be
updated and re-enabled.
  • Loading branch information
miltonhultgren authored Nov 24, 2023
1 parent 52d0e38 commit f555dbe
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {
const requestTracker = createRequestTracker(browser, pageObjects.common);
let mlJobHelper: MlJobHelper;

describe('ML job ID formats', function () {
// Disabled until https://github.com/elastic/kibana/issues/171913 is addressed
describe.skip('ML job ID formats', function () {
this.beforeAll(async () => {
// Access to ml.api has to happen inside a test or test hook
mlJobHelper = createMlJobHelper(ml.api);
Expand Down

0 comments on commit f555dbe

Please sign in to comment.