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

[ML] Unskip Transform continuous creation test #167829

Merged
merged 1 commit into from
Oct 4, 2023
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 @@ -25,9 +25,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const security = getService('security');
const pageObjects = getPageObjects(['discover']);

// Failing: See https://github.com/elastic/kibana/issues/165146
// Failing: See https://github.com/elastic/kibana/issues/165144
describe.skip('creation_continuous_transform', function () {
describe('creation_continuous_transform', function () {
before(async () => {
// installing the sample data with test user with super user role and then switching roles with limited privileges
await security.testUser.setRoles(['superuser'], { skipBrowserRefresh: true });
Expand Down Expand Up @@ -516,9 +514,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await transform.wizard.assertCopyToClipboardButtonEnabled(true);
});

// FLAKY: https://github.com/elastic/kibana/issues/158612
// FLAKY: https://github.com/elastic/kibana/issues/158613
it.skip('runs the transform and displays it correctly in the job list', async () => {
it('runs the transform and displays it correctly in the job list', async () => {
await transform.testExecution.logTestStep('creates the transform');
await transform.wizard.createTransform();

Expand Down
Loading