From cc97d0cf99dc2726af5f8ed73c149f7782eef657 Mon Sep 17 00:00:00 2001 From: Natalia Venditto Date: Mon, 11 Dec 2023 14:42:28 +0100 Subject: [PATCH] test: fix tests to match new names --- tests/e2e/webapp.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/webapp.spec.ts b/tests/e2e/webapp.spec.ts index 676d67fe..54a0042a 100644 --- a/tests/e2e/webapp.spec.ts +++ b/tests/e2e/webapp.spec.ts @@ -504,7 +504,7 @@ test.describe('developer settings', () => { await page.waitForTimeout(1000); // check if localStorage has an item called 'customStyles' and it's not empty const hasCustomStyles = await page.evaluate(() => { - const customStyles = localStorage.getItem('customStyles'); + const customStyles = localStorage.getItem('ms-azoaicc:customStyles'); return customStyles !== null && customStyles.trim() !== ''; });