Skip to content
Snippets Groups Projects
Commit 5b67e00e authored by jurgenhaas's avatar jurgenhaas
Browse files

Merge remote-tracking branch 'origin/main'

# Conflicts:
#	commands.js
parents b11eb655 34755314
No related branches found
No related tags found
No related merge requests found
variables:
VERSION: ${CI_COMMIT_TAG}
CYPRESS_VERSION: 13.13.2
CYPRESS_VERSION: 13.15.0
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
......
Cypress.Commands.overwrite('visit', (originalFn, url, options) => {
options = {};
if (Cypress.env('basicauth_user') != null) {
options = {
auth : {
username: Cypress.env('basicauth_user'),
password: Cypress.env('basicauth_pass')
}
options.auth = {
username: Cypress.env('basicauth_user'),
password: Cypress.env('basicauth_pass')
};
}
return originalFn(url, options);
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment