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() !== ''; });