delete input prompts (#3380)

* delete input prompts

* nit

* remove vestigial test

* nit
This commit is contained in:
pablonyx
2024-12-10 13:36:40 -08:00
committed by GitHub
parent 48c10271c2
commit 878a189011
29 changed files with 68 additions and 1449 deletions

View File

@@ -1,16 +0,0 @@
import { test, expect } from "@chromatic-com/playwright";
test(
"Admin - Custom Assistants - Prompt Library",
{
tag: "@admin",
},
async ({ page }, testInfo) => {
// Test simple loading
await page.goto("http://localhost:3000/admin/prompt-library");
await expect(page.locator("h1.text-3xl")).toHaveText("Prompt Library");
await expect(page.locator("p.text-sm")).toHaveText(
/^Create prompts that can be accessed/
);
}
);