make window 100p wider to fix gauge test (#16215)

This commit is contained in:
Lee Drengenberg 2018-01-22 21:01:29 -06:00 committed by GitHub
parent abd6c126ce
commit ebc6e45215
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ export default function ({ getService, getPageObjects }) {
});
it('should show correct values for fields with fieldFormatters', async function () {
const expectedTexts = [ '2,904\nwin 8: Count', '5.528KB' ];
const expectedTexts = [ '2,904\nwin 8: Count', '5.528KB\nwin 8: Average bytes' ];
await PageObjects.visualize.clickMetricEditor();

View file

@ -7,7 +7,7 @@ export default function ({ getService, loadTestFile }) {
describe('visualize app', function () {
before(async function () {
log.debug('Starting visualize before method');
remote.setWindowSize(1280, 800);
remote.setWindowSize(1380, 800);
await esArchiver.loadIfNeeded('logstash_functional');
await esArchiver.load('visualize');
await kibanaServer.uiSettings.replace({ 'dateFormat:tz': 'UTC', 'defaultIndex': 'logstash-*' });