Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[8.13] [ML] Transforms: Update functional test assertion, reenable tests. (#176920) #177150

Merged
merged 1 commit into from
Feb 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const transform = getService('transform');
const pageObjects = getPageObjects(['discover']);

// Failing: See https://github.com/elastic/kibana/issues/151889
// Failing: See https://github.com/elastic/kibana/issues/151811
describe.skip('creation_index_pattern', function () {
describe('creation_index_pattern', function () {
before(async () => {
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/ecommerce');
await transform.testResources.createDataViewIfNeeded('ft_ecommerce', 'order_date');
Expand Down Expand Up @@ -225,7 +223,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
{
chartAvailable: true,
id: 'customer_full_name',
legend: 'top 20 of 3321 categories',
legend: 'top 20 of 3327 categories',
colorStats: [
{ color: '#000000', percentage: 25 },
{ color: '#54B399', percentage: 75 },
Expand Down Expand Up @@ -529,9 +527,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await transform.sourceSelection.selectSource(testData.source);
});

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/176697
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/176698
it.skip('navigates through the wizard and sets all needed fields', async () => {
it('navigates through the wizard and sets all needed fields', async () => {
await transform.testExecution.logTestStep('displays the define step');
await transform.wizard.assertDefineStepActive();

Expand Down
Loading