Skip to content

Commit

Permalink
Test huge fields functional test (#93334) (#93462)
Browse files Browse the repository at this point in the history
* fixes #74449

* fix for unskipping test huge fields functional test

* fix eslint
  • Loading branch information
rashmivkulkarni authored Mar 3, 2021
1 parent 780febd commit b823a8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/functional/apps/management/_test_huge_fields.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ export default function ({ getService, getPageObjects }) {
const security = getService('security');
const PageObjects = getPageObjects(['common', 'home', 'settings']);

// Failing: See https://github.com/elastic/kibana/issues/89031
describe.skip('test large number of fields', function () {
describe('test large number of fields', function () {
this.tags(['skipCloud']);

const EXPECTED_FIELD_COUNT = '10006';
before(async function () {
await security.testUser.setRoles(['kibana_admin', 'test_testhuge_reader']);
await security.testUser.setRoles(['kibana_admin', 'test_testhuge_reader'], false);
await esArchiver.emptyKibanaIndex();
await esArchiver.loadIfNeeded('large_fields');
await PageObjects.settings.navigateTo();
await PageObjects.settings.createIndexPattern('testhuge', 'date');
});

Expand Down
Binary file modified test/functional/fixtures/es_archiver/large_fields/data.json.gz
Binary file not shown.

0 comments on commit b823a8c

Please sign in to comment.