Skip to content

Commit

Permalink
added log info for clarity while running the test with additional par…
Browse files Browse the repository at this point in the history
…ameters (#22277) (#22313)
  • Loading branch information
rashmivkulkarni authored Aug 23, 2018
1 parent 35be4dc commit 576c707
Showing 1 changed file with 3 additions and 0 deletions.
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

0 comments on commit 576c707

Please sign in to comment.