mirror of
https://github.com/andrewyng/openworker.git
synced 2026-09-11 14:50:14 +00:00
rename artifact names to openworker: desktop/server binaries, console scripts, npm package
The Python import namespace (coworker) and the live auth config strings are intentionally unchanged.
This commit is contained in:
@@ -8,7 +8,7 @@ import { newestFile, scratchBaseIfReady, sendTask, startCoworkSession } from "./
|
||||
|
||||
test("live: a write blocks on an approval card, then completes once approved", async ({ page }) => {
|
||||
const scratchBase = await scratchBaseIfReady();
|
||||
test.skip(!scratchBase, "live backend not ready — start coworker-server and configure a model");
|
||||
test.skip(!scratchBase, "live backend not ready — start openworker-server and configure a model");
|
||||
|
||||
// Unique filename per run so the "doesn't exist before approval" check can't see a prior run's file.
|
||||
const name = `hello-${Date.now()}.txt`;
|
||||
|
||||
@@ -14,7 +14,7 @@ const EXPECTED = ["144", "377", "987", "4181"];
|
||||
|
||||
test("live: agent writes fib.md to its scratch workspace, verified on disk", async ({ page }) => {
|
||||
const scratchBase = await scratchBaseIfReady();
|
||||
test.skip(!scratchBase, "live backend not ready — start coworker-server and configure a model");
|
||||
test.skip(!scratchBase, "live backend not ready — start openworker-server and configure a model");
|
||||
|
||||
await startCoworkSession(page);
|
||||
await selectMode(page, "Full access"); // run the write without an approval gate
|
||||
|
||||
@@ -7,7 +7,7 @@ import { scratchBaseIfReady, sendTask, startCoworkSession } from "./helpers";
|
||||
|
||||
test("live: unattended routes an approval to the Inbox", async ({ page }) => {
|
||||
const scratchBase = await scratchBaseIfReady();
|
||||
test.skip(!scratchBase, "live backend not ready — start coworker-server and configure a model");
|
||||
test.skip(!scratchBase, "live backend not ready — start openworker-server and configure a model");
|
||||
|
||||
const token = `INBOX-${Date.now()}`;
|
||||
const name = `inbox-${Date.now()}.txt`;
|
||||
|
||||
@@ -8,7 +8,7 @@ import { scratchBaseIfReady, selectMode, sendTask, startCoworkSession } from "./
|
||||
|
||||
test("live: a session's transcript and artifact survive a page reload", async ({ page }) => {
|
||||
const scratchBase = await scratchBaseIfReady();
|
||||
test.skip(!scratchBase, "live backend not ready — start coworker-server and configure a model");
|
||||
test.skip(!scratchBase, "live backend not ready — start openworker-server and configure a model");
|
||||
|
||||
const token = `PERSIST-${Date.now()}`;
|
||||
// Unique filename — appears early in the session title (so it survives title truncation and is a
|
||||
|
||||
@@ -14,7 +14,7 @@ const FIXTURE_DIR = path.join(here, "fixtures", "persona"); // holds e2e-tester.
|
||||
|
||||
test("live: install a persona from a directory, enable it, and run a task as it", async ({ page }) => {
|
||||
const scratchBase = await scratchBaseIfReady();
|
||||
test.skip(!scratchBase, "live backend not ready — start coworker-server and configure a model");
|
||||
test.skip(!scratchBase, "live backend not ready — start openworker-server and configure a model");
|
||||
|
||||
const token = `PERSONA-${Date.now()}`;
|
||||
const name = `persona-${Date.now()}.txt`;
|
||||
|
||||
Reference in New Issue
Block a user