feat(e2e): test note settings

This commit is contained in:
Elian Doran 2025-01-12 19:43:29 +02:00
parent 8dbb5497f1
commit 9b85a101a6
No known key found for this signature in database

View File

@ -1,7 +1,7 @@
import { test, expect, Page } from "@playwright/test"; import { test, expect, Page } from "@playwright/test";
import App from "../support/app"; import App from "../support/app";
test("Displays simple map", async ({ page, context }) => { test("displays simple map", async ({ page, context }) => {
const app = new App(page, context); const app = new App(page, context);
await app.goto(); await app.goto();
await app.goToNoteInNewTab("Sample mindmap"); await app.goToNoteInNewTab("Sample mindmap");
@ -10,3 +10,13 @@ test("Displays simple map", async ({ page, context }) => {
expect(app.currentNoteSplit).toContainText("1"); expect(app.currentNoteSplit).toContainText("1");
expect(app.currentNoteSplit).toContainText("1a"); expect(app.currentNoteSplit).toContainText("1a");
}); });
test("displays note settings", async ({ page, context }) => {
const app = new App(page, context);
await app.goto();
await app.goToNoteInNewTab("Sample mindmap");
await app.currentNoteSplit.getByText("Hello world").click({ force: true });
const nodeMenu = app.currentNoteSplit.locator(".node-menu");
expect(nodeMenu).toBeVisible();
});