thousands-hair-55512
02/23/2023, 8:09 PMcy.intercept(`${Cypress.env('API_BASE_PATH')}/**`, ({ headers }) => {
headers['Authorization'] = `Bearer ${Cypress.env('token')}`;
console.log(headers);
}).as('authInterceptor');thousands-hair-55512
02/23/2023, 8:34 PMCypress.Commands.overwrite('request', (originalFn, ...options) => {
const optionsObject = options[0];
const token = Cypress.env('token');
if (!!token && optionsObject === Object(optionsObject)) {
optionsObject.headers = {
authorization: 'Bearer ' + token,
...optionsObject.headers
};
return originalFn(optionsObject);
}
return originalFn(...options);
});high-holiday-75305
02/23/2023, 8:35 PMhigh-holiday-75305
02/23/2023, 8:36 PMthousands-hair-55512
02/23/2023, 8:37 PMhigh-holiday-75305
02/23/2023, 8:38 PMhigh-holiday-75305
02/23/2023, 8:39 PMhigh-holiday-75305
02/23/2023, 8:39 PMhigh-holiday-75305
02/23/2023, 8:41 PMthousands-hair-55512
02/23/2023, 8:43 PMhigh-holiday-75305
02/23/2023, 8:43 PMthousands-hair-55512
02/23/2023, 8:45 PMrequest command as well?high-holiday-75305
02/23/2023, 8:47 PMhigh-holiday-75305
02/23/2023, 8:47 PMhigh-holiday-75305
02/23/2023, 8:49 PMhigh-holiday-75305
02/23/2023, 8:49 PMhigh-holiday-75305
02/23/2023, 8:49 PMhigh-holiday-75305
02/23/2023, 8:50 PMhigh-holiday-75305
02/23/2023, 9:08 PMthousands-hair-55512
02/23/2023, 9:09 PMthousands-hair-55512
02/23/2023, 9:09 PMthousands-hair-55512
02/23/2023, 9:09 PMhigh-holiday-75305
02/23/2023, 9:18 PM