Skip to content
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
3 changes: 3 additions & 0 deletions test/functional/apps/management/_test_huge_fields.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import expect from 'expect.js';

export default function ({ getService, getPageObjects }) {
const esArchiver = getService('esArchiver');
const log = getService('log');
const PageObjects = getPageObjects(['common', 'home', 'settings']);

describe('test large number of fields @skipcloud', function () {
Expand All @@ -34,6 +35,8 @@ export default function ({ getService, getPageObjects }) {

it('test_huge data should have expected number of fields', async function () {
const tabCount = await PageObjects.settings.getFieldsTabCount();
//default : maxPayloadBytes is 1048576
log.info('if there is a failure, start the server with "node scripts/functional_tests_server -- --server.maxPayloadBytes=1648576"');
expect(tabCount).to.be(EXPECTED_FIELD_COUNT);
});

Expand Down