mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-28 10:32:27 +08:00
14 lines
451 B
TypeScript
14 lines
451 B
TypeScript
![]() |
import { test, expect, Page } from "@playwright/test";
|
||
|
import App from "./support/app";
|
||
|
|
||
|
test("Displays translations in Settings", async ({ page }) => {
|
||
|
const app = new App(page);
|
||
|
await app.goto();
|
||
|
await app.closeAllTabs();
|
||
|
await app.goToSettings();
|
||
|
await app.noteTree.getByText("Appearance").click();
|
||
|
|
||
|
expect(app.currentNoteSplit).toContainText("Localization");
|
||
|
expect(app.currentNoteSplit).toContainText("Language");
|
||
|
});
|