CORS - CI/CD Glossary Definition
CORS (Cross-Origin Resource Sharing) is a browser security mechanism where a server uses Access-Control-Allow-Origin and related headers to permit pages from other origins to call its API.
Why it matters
End-to-end browser tests in CI frequently fail with a CORS error when the test frontend and backend run on different ports or hosts and the allowed-origins list was not updated for the test environment.
Related guides
Preflight Request - CI/CD Glossary DefinitionPreflight Request: A preflight request is an automatic `OPTIONS` request a browser sends before certain cross…
Bearer Token - CI/CD Glossary DefinitionBearer Token: A bearer token is a credential sent in an `Authorization: Bearer <token>` header; whoever holds…
HTTP Status Code - CI/CD Glossary DefinitionHTTP Status Code: An HTTP status code is a three-digit number a server returns to summarize the result: 2xx s…