Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump @babel/traverse from 7.20.13 to 7.23.2 #53

Merged
merged 12 commits into from
Mar 21, 2024
Prev Previous commit
Remove console debug logs
Signed-off-by: Rupal Mahajan <[email protected]>
rupal-bq committed Mar 21, 2024
commit cfaa9bbe80011ba8a738f9c66fcb3abdd069b9da
4 changes: 1 addition & 3 deletions src/download-helpers.js
Original file line number Diff line number Diff line change
@@ -202,7 +202,6 @@ const getUrl = async (url) => {
};

const basicAuthentication = async (page, overridePage, url, username, password, tenant, multitenancy) => {
console.log("blhaohborhobharobh")
await page.goto(url, { waitUntil: 'networkidle0' });
await new Promise(resolve => setTimeout(resolve, 10000));
await page.type('input[data-test-subj="user-name"]', username);
@@ -225,7 +224,6 @@ const basicAuthentication = async (page, overridePage, url, username, password,
}
}
catch (err) {
console.error(err)
spinner.fail('Invalid username or password');
exit(1);
}
@@ -324,7 +322,7 @@ const cognitoAuthentication = async (page, overridePage, url, username, password

if (multitenancy === true && tenantSelection !== null) {
// Check if tenant was selected successfully.
if ((await page.$('button[data-test-subj="confirm"]')) !== null) {
if ((await overridePage.$('button[data-test-subj="confirm"]')) !== null) {
spinner.fail('Invalid tenant');
exit(1);
}