Files
moreminimore-vibe/e2e-tests/prompt_library.spec.ts
Kunthawat Greethong 11986a0196 Add project files
2025-12-05 09:26:53 +07:00

57 lines
1.6 KiB
TypeScript

import { test } from "./helpers/test_helper";
import { expect } from "@playwright/test";
test("create and edit prompt", async ({ po }) => {
await po.setUp();
await po.goToLibraryTab();
await po.createPrompt({
title: "title1",
description: "desc",
content: "prompt1content",
});
await expect(po.page.getByTestId("prompt-card")).toMatchAriaSnapshot();
await po.page.getByTestId("edit-prompt-button").click();
await po.page
.getByRole("textbox", { name: "Content" })
.fill("prompt1content-edited");
await po.page.getByRole("button", { name: "Save" }).click();
await expect(po.page.getByTestId("prompt-card")).toMatchAriaSnapshot();
});
test("delete prompt", async ({ po }) => {
await po.setUp();
await po.goToLibraryTab();
await po.createPrompt({
title: "title1",
description: "desc",
content: "prompt1content",
});
await po.page.getByTestId("delete-prompt-button").click();
await po.page.getByRole("button", { name: "Delete" }).click();
await expect(po.page.getByTestId("prompt-card")).not.toBeVisible();
});
test("use prompt", async ({ po }) => {
await po.setUp();
await po.goToLibraryTab();
await po.createPrompt({
title: "title1",
description: "desc",
content: "prompt1content",
});
await po.goToAppsTab();
await po.getChatInput().click();
await po.getChatInput().fill("[dump] @");
await po.page.getByRole("menuitem", { name: "Choose title1" }).click();
await po.page.getByRole("button", { name: "Send message" }).click();
await po.waitForChatCompletion();
await po.snapshotServerDump("last-message");
});