[lint] Fix no-undef errors

This commit is contained in:
Jonathan Budzenski 2017-03-22 17:09:12 -05:00
parent fd7801137a
commit 64e8f500c2
No known key found for this signature in database
GPG key ID: D28BF9418FA0F292
2 changed files with 1 additions and 4 deletions

View file

@ -3,8 +3,6 @@ import expect from 'expect.js';
import {
bdd,
defaultTimeout,
scenarioManager,
esClient
} from '../../../support';
@ -33,7 +31,7 @@ bdd.describe('index pattern filter', function describeIndexTests() {
bdd.it('should filter indexed fields', async function () {
await PageObjects.settings.navigateTo();
await PageObjects.settings.clickKibanaIndicies();
const fieldTypesBefore = await PageObjects.settings.getFieldTypes();
await PageObjects.settings.getFieldTypes();
await PageObjects.settings.setFieldTypeFilter('string');

View file

@ -3,7 +3,6 @@ import expect from 'expect.js';
import {
bdd,
scenarioManager,
esClient
} from '../../../support';