Skip to content

Commit

Permalink
export shared entities
Browse files Browse the repository at this point in the history
  • Loading branch information
maximpn committed Sep 22, 2023
1 parent aad1cec commit 86fd68a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/test/security_solution_cypress/cypress/tasks/login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const ELASTICSEARCH_PASSWORD = 'ELASTICSEARCH_PASSWORD';
* @param role string role/user to log in with
* @param route string route to visit
*/
const getUrlWithRoute = (role: ROLES, route: string) => {
export const getUrlWithRoute = (role: ROLES, route: string) => {
const url = Cypress.config().baseUrl;
const kibana = new URL(String(url));
const theUrl = `${Url.format({
Expand All @@ -66,7 +66,7 @@ const getUrlWithRoute = (role: ROLES, route: string) => {
return theUrl;
};

interface User {
export interface User {
username: string;
password: string;
}
Expand Down

0 comments on commit 86fd68a

Please sign in to comment.