52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
import { expect, test } from "@playwright/test"
|
|
import { assistantMessage, setupTimeline, toolPart, userMessage } from "../performance/timeline-stability/fixture"
|
|
|
|
test("renders completed write content", async ({ page }) => {
|
|
const id = "prt_file_projection_write"
|
|
await setupTimeline(page, {
|
|
messages: [
|
|
userMessage(),
|
|
assistantMessage([
|
|
toolPart(id, "write", "completed", { filePath: "src/write.ts", content: "export const written = true\n" }),
|
|
]),
|
|
],
|
|
settings: { editToolPartsExpanded: true },
|
|
})
|
|
|
|
await expect(page.locator(`[data-timeline-part-id="${id}"] [data-component="write-content"]`)).toBeVisible()
|
|
})
|
|
|
|
test("renders a completed single-file patch", async ({ page }) => {
|
|
const id = "prt_file_projection_single_patch"
|
|
await setupTimeline(page, {
|
|
messages: [
|
|
userMessage(),
|
|
assistantMessage([
|
|
toolPart(
|
|
id,
|
|
"apply_patch",
|
|
"completed",
|
|
{ files: ["src/a.ts"] },
|
|
{
|
|
metadata: {
|
|
files: [
|
|
{
|
|
filePath: "src/a.ts",
|
|
relativePath: "src/a.ts",
|
|
type: "update",
|
|
additions: 1,
|
|
deletions: 1,
|
|
before: "export const value = 1\n",
|
|
after: "export const value = 2\n",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
),
|
|
]),
|
|
],
|
|
settings: { editToolPartsExpanded: true },
|
|
})
|
|
|
|
await expect(page.locator(`[data-timeline-part-id="${id}"] [data-component="apply-patch-file-diff"]`)).toBeVisible()
|
|
})
|