im using cypress-ntlm to e2e test my app.
the command is: npx cypress-ntlm run --browser chrome --env Environment=Development
my ssoNtlm connection function is:
export const CyNtlmSso = (): void => {
cy.ntlmReset();
const user = Cypress.env('user');
const password = Cypress.env('password');
const cicd = Cypress.env('cicd');
const allowedHosts = ['*.intel.com', 'localhost*', '*fonts.googleapis.com'];
if (cicd) cy.ntlm(allowedHosts, user, password, 'ger', undefined, 2);
else cy.ntlmSso(allowedHosts);
};
im getting an error :
cypress-ntlm-auth: Certificate validation failed for "fonts.googleapis.com". ETIMEDOUT
can you help me understand why?