mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-05-05 19:59:18 -05:00
client: Hide native title bar setting on web
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import test, { expect } from "@playwright/test";
|
||||
|
||||
test("Native Title Bar not displayed on web", async ({ page }) => {
|
||||
await page.goto('http://localhost:8082/#root/_hidden/_options/_optionsAppearance');
|
||||
await expect(page.getByRole('heading', { name: 'Theme' })).toBeVisible();
|
||||
await expect(page.getByRole('heading', { name: 'Native Title Bar (requires' })).toBeHidden();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user