Add project files

This commit is contained in:
Kunthawat Greethong
2025-12-05 09:26:53 +07:00
parent 3b43cb52ef
commit 11986a0196
814 changed files with 141076 additions and 1 deletions

View File

@@ -0,0 +1,56 @@
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");
});