mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
fix(ui): narrow workboard dependency fixtures
This commit is contained in:
@@ -141,8 +141,18 @@ describe("workboard controller", () => {
|
||||
});
|
||||
|
||||
it("summarizes parent dependency readiness from loaded cards", () => {
|
||||
const parentDone = { ...sampleCard, id: "parent-done", title: "Done parent", status: "done" };
|
||||
const parentTodo = { ...sampleCard, id: "parent-todo", title: "Todo parent", status: "todo" };
|
||||
const parentDone = {
|
||||
...sampleCard,
|
||||
id: "parent-done",
|
||||
title: "Done parent",
|
||||
status: "done",
|
||||
} satisfies WorkboardCard;
|
||||
const parentTodo = {
|
||||
...sampleCard,
|
||||
id: "parent-todo",
|
||||
title: "Todo parent",
|
||||
status: "todo",
|
||||
} satisfies WorkboardCard;
|
||||
const child = {
|
||||
...sampleCard,
|
||||
id: "child-1",
|
||||
|
||||
Reference in New Issue
Block a user