mirror of
https://github.com/zadam/trilium.git
synced 2025-11-04 20:36:13 +01:00
client: Hide tray settings on web
This commit is contained in:
@@ -6,3 +6,8 @@ test("Native Title Bar not displayed on web", async ({ page }) => {
|
||||
await expect(page.getByRole('heading', { name: 'Native Title Bar (requires' })).toBeHidden();
|
||||
});
|
||||
|
||||
test("Tray settings not displayed on web", async ({ page }) => {
|
||||
await page.goto('http://localhost:8082/#root/_hidden/_options/_optionsOther');
|
||||
await expect(page.getByRole('heading', { name: 'Note Erasure Timeout' })).toBeVisible();
|
||||
await expect(page.getByRole('heading', { name: 'Tray' })).toBeHidden();
|
||||
});
|
||||
Reference in New Issue
Block a user