This commit is contained in:
Nathan Flurry 2026-03-14 14:37:40 -07:00
parent 70d31f819c
commit 4d20f39d4f
47 changed files with 2605 additions and 669 deletions

View file

@ -1,5 +1,5 @@
import { describe, expect, it } from "vitest";
import { taskKey, historyKey, projectBranchSyncKey, projectKey, projectPrSyncKey, taskSandboxKey, workspaceKey } from "../src/actors/keys.js";
import { githubDataKey, historyKey, projectBranchSyncKey, projectKey, taskKey, taskSandboxKey, workspaceKey } from "../src/actors/keys.js";
describe("actor keys", () => {
it("prefixes every key with workspace namespace", () => {
@ -9,7 +9,7 @@ describe("actor keys", () => {
taskKey("default", "repo", "task"),
taskSandboxKey("default", "sbx"),
historyKey("default", "repo"),
projectPrSyncKey("default", "repo"),
githubDataKey("default"),
projectBranchSyncKey("default", "repo"),
];