Skip to content

Commit

Permalink
test: fix tests to match new names
Browse files Browse the repository at this point in the history
  • Loading branch information
anfibiacreativa committed Dec 11, 2023
1 parent 9fdea58 commit cc97d0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/webapp.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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() !== '';
});

Expand Down

0 comments on commit cc97d0c

Please sign in to comment.