From 25d6809e1c8ee7678742d458a998c96d01e89a81 Mon Sep 17 00:00:00 2001 From: Andreas Awouters Date: Tue, 6 May 2025 10:05:16 +0200 Subject: [PATCH] 119602: Update e2e cookieContent --- cypress/support/e2e.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/support/e2e.ts b/cypress/support/e2e.ts index 3d1a67f165..1a4a5a64b3 100644 --- a/cypress/support/e2e.ts +++ b/cypress/support/e2e.ts @@ -56,7 +56,7 @@ before(() => { beforeEach(() => { // Pre-agree to all Orejime cookies by setting the orejime-* cookies // This just ensures it doesn't get in the way of matching other objects in the page. - const cookieContent = '{"authentication":true,"preferences":true,"acknowledgement":true,"google-analytics":true,"accessibility":true}'; + const cookieContent = '{"authentication":true,"preferences":true,"acknowledgement":true,"google-analytics":true,"matomo":true,"google-recaptcha":true,"accessibility":true}'; cy.setCookie('orejime-anonymous', cookieContent); cy.setCookie(`orejime-${Cypress.env('DSPACE_TEST_ADMIN_USER_UUID')}`, cookieContent); cy.setCookie(`orejime-${Cypress.env('DSPACE_TEST_SUBMIT_USER_UUID')}`, cookieContent);