mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 11:26:15 +01:00
client: Hide native title bar setting on web
This commit is contained in:
8
integration-tests/settings.spec.ts
Normal file
8
integration-tests/settings.spec.ts
Normal file
@@ -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