mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
Test huge fields functional test (#93334)
* fixes https://github.com/elastic/kibana/issues/74449 * fix for unskipping test huge fields functional test * fix eslint
This commit is contained in:
parent
73f8b335e1
commit
a0881f90e2
2 changed files with 3 additions and 3 deletions
|
@ -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');
|
||||
});
|
||||
|
||||
|
|
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue