refactor(browser): prune browser automation surface

This commit is contained in:
Peter Steinberger
2025-12-20 02:53:22 +00:00
parent 849446ae17
commit 6fc30962d6
19 changed files with 85 additions and 802 deletions

View File

@@ -3,7 +3,6 @@ import { afterEach, describe, expect, it, vi } from "vitest";
import {
browserClickRef,
browserDom,
browserEval,
browserOpenTab,
browserQuery,
browserScreenshot,
@@ -50,7 +49,7 @@ describe("browser client", () => {
);
await expect(
browserEval("http://127.0.0.1:18791", { js: "1+1" }),
browserDom("http://127.0.0.1:18791", { format: "text", maxChars: 1 }),
).rejects.toThrow(/409: conflict/i);
});