From 81356bf837b5e2b6f549cb425a2548005a889e98 Mon Sep 17 00:00:00 2001 From: Olivia Guyot Date: Fri, 6 Oct 2023 14:07:24 +0200 Subject: [PATCH] e2e: make sure all translations are in english --- apps/datahub-e2e/src/support/e2e.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/datahub-e2e/src/support/e2e.ts b/apps/datahub-e2e/src/support/e2e.ts index af7675e3f8..d5bbe59f1b 100644 --- a/apps/datahub-e2e/src/support/e2e.ts +++ b/apps/datahub-e2e/src/support/e2e.ts @@ -18,4 +18,7 @@ import './commands' beforeEach(() => { cy.viewport(1900, 1400) + + // all tests should show english translations + window.localStorage.setItem('geonetwork-ui-language', 'en') })