mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 18:12:29 +08:00
9 lines
387 B
TypeScript
9 lines
387 B
TypeScript
![]() |
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();
|
||
|
});
|
||
|
|