Skip to content

Commit

Permalink
test(discover-log-explorer): final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Antonio Ghiani committed Aug 10, 2023
1 parent bfa674e commit 45f8fe4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/functional/services/common/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ class BrowserService extends FtrService {
* Get the network simulation for chromium browsers if available.
* https://www.selenium.dev/selenium/docs/api/javascript/module/selenium-webdriver/chrome_exports_Driver.html#getNetworkConditions
*
* @return {Promise<void>}
* @return {Promise<NetworkOptions>}
*/
public async getNetworkConditions() {
if (this.isChromium()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const defaultLogColumns = ['@timestamp', 'message'];
export default function ({ getService, getPageObjects }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const retry = getService('retry');
const PageObjects = getPageObjects(['common', 'discover', 'discoverLogExplorer']);
const PageObjects = getPageObjects(['common', 'discover']);

describe('Columns selection initialization and update', () => {
before(async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const defaultLogColumns = ['@timestamp', 'message'];
export default function ({ getService, getPageObjects }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const retry = getService('retry');
const PageObjects = getPageObjects(['common', 'discover', 'discoverLogExplorer']);
const PageObjects = getPageObjects(['common', 'discover']);

describe('Columns selection initialization and update', () => {
before(async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { FtrProviderContext } from '../../../ftr_provider_context';

export default function ({ getService, getPageObjects }: FtrProviderContext) {
const kibanaServer = getService('kibanaServer');
const PageObjects = getPageObjects(['common', 'navigationalSearch']);
const PageObjects = getPageObjects(['common']);
const testSubjects = getService('testSubjects');

describe('Customizations', () => {
Expand Down

0 comments on commit 45f8fe4

Please sign in to comment.