[ML] Transform: Enable accessibility tests (#160649)

## Summary

Resolves https://github.com/elastic/kibana/issues/160382

### Checklist

- [x] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
This commit is contained in:
Dima Arnautov 2023-07-17 18:38:18 +02:00 committed by GitHub
parent 55cc20fc5c
commit e248faa49c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 5 deletions

View file

@ -11,7 +11,7 @@ export default function ({ getService }: FtrProviderContext) {
const a11y = getService('a11y');
const transform = getService('transform');
describe('transform Accessibility', () => {
describe('transform Accessibility', function () {
const esArchiver = getService('esArchiver');
before(async () => {
@ -147,7 +147,7 @@ export default function ({ getService }: FtrProviderContext) {
await a11y.testAppSnapshot();
});
it('create pivot transform configuration step JSON editor', async () => {
it.skip('create pivot transform configuration step JSON editor', async () => {
await transform.testExecution.logTestStep('displays the JSON pivot configuration');
await transform.wizard.assertAdvancedPivotEditorSwitchExists();
await transform.wizard.enableAdvancedPivotEditor();

View file

@ -33,10 +33,8 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
require.resolve('./apps/roles'),
require.resolve('./apps/ingest_node_pipelines'),
require.resolve('./apps/index_lifecycle_management'),
// https://github.com/elastic/kibana/issues/153596
// https://github.com/elastic/kibana/issues/153592
require.resolve('./apps/ml'),
// require.resolve('./apps/transform'),
require.resolve('./apps/transform'),
require.resolve('./apps/lens'),
require.resolve('./apps/upgrade_assistant'),
require.resolve('./apps/canvas'),