[ML] Data Frame Analytics accessibility tests: fix flaky outlier creation test (#94735)

* ensure callouts exist before moving to continue button

* unskip ml accessibility suite
This commit is contained in:
Melissa Alvarez 2021-03-16 17:49:24 -04:00 committed by GitHub
parent 3afaebc49b
commit 769243cc98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,8 +13,7 @@ export default function ({ getService }: FtrProviderContext) {
const a11y = getService('a11y');
const ml = getService('ml');
// Failing: See https://github.com/elastic/kibana/issues/94666
describe.skip('ml', () => {
describe('ml', () => {
const esArchiver = getService('esArchiver');
before(async () => {
@ -279,6 +278,7 @@ export default function ({ getService }: FtrProviderContext) {
it('data frame analytics create job validation step for outlier job', async () => {
await ml.dataFrameAnalyticsCreation.continueToValidationStep();
await ml.dataFrameAnalyticsCreation.assertValidationCalloutsExists();
await a11y.testAppSnapshot();
});