Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove default values in helper functions
Browse files Browse the repository at this point in the history
kevinlog committed Dec 27, 2019
1 parent 7317dd0 commit eff2be6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/functional/page_objects/common_page.ts
Original file line number Diff line number Diff line change
@@ -116,11 +116,11 @@ export function CommonPageProvider({ getService, getPageObjects }: FtrProviderCo
}

private async navigate({
appConfig = {},
ensureCurrentUrl = true,
shouldLoginIfPrompted = true,
shouldAcceptAlert = true,
useActualUrl = false,
appConfig,
ensureCurrentUrl,
shouldLoginIfPrompted,
shouldAcceptAlert,
useActualUrl,
} = {}) {
const appUrl = getUrl.noAuth(config.get('servers.kibana'), appConfig);

0 comments on commit eff2be6

Please sign in to comment.