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

[7.x] Test fix management scripted field filter functional test and unskip it (#92756) #92924

Merged
merged 1 commit into from
Feb 26, 2021
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
7 changes: 2 additions & 5 deletions test/functional/apps/management/_scripted_fields_filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ export default function ({ getService, getPageObjects }) {
const esArchiver = getService('esArchiver');
const PageObjects = getPageObjects(['settings']);

// this functionality is no longer functional as of 7.0 but still needs cleanup
// https://github.com/elastic/kibana/issues/74118
describe.skip('filter scripted fields', function describeIndexTests() {
describe('filter scripted fields', function describeIndexTests() {
before(async function () {
// delete .kibana index and then wait for Kibana to re-create it
await browser.setWindowSize(1200, 800);
Expand All @@ -29,8 +27,7 @@ export default function ({ getService, getPageObjects }) {
});

after(async function () {
await esArchiver.unload('management');
await kibanaServer.uiSettings.replace({});
await esArchiver.load('empty_kibana');
});

const scriptedPainlessFieldName = 'ram_pain1';
Expand Down