mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-18 11:40:39 +09:00
[codex] Add runtime lifecycle recovery and live issue visibility (#4419)
This commit is contained in:
parent
9a8d219949
commit
5a0c1979cf
121 changed files with 9625 additions and 2044 deletions
|
|
@ -147,6 +147,10 @@ function makeRun(id: string, status: HeartbeatRun["status"], createdAt: string,
|
|||
logBytes: null,
|
||||
logSha256: null,
|
||||
logCompressed: false,
|
||||
lastOutputAt: null,
|
||||
lastOutputSeq: 0,
|
||||
lastOutputStream: null,
|
||||
lastOutputBytes: null,
|
||||
errorCode: null,
|
||||
externalRunId: null,
|
||||
processPid: null,
|
||||
|
|
@ -837,6 +841,7 @@ describe("inbox helpers", () => {
|
|||
labels: [],
|
||||
projects: [],
|
||||
workspaces: [],
|
||||
liveOnly: false,
|
||||
hideRoutineExecutions: true,
|
||||
},
|
||||
}).map((issue) => issue.id),
|
||||
|
|
@ -856,6 +861,7 @@ describe("inbox helpers", () => {
|
|||
labels: [],
|
||||
projects: [],
|
||||
workspaces: [],
|
||||
liveOnly: false,
|
||||
hideRoutineExecutions: true,
|
||||
},
|
||||
}),
|
||||
|
|
@ -875,6 +881,7 @@ describe("inbox helpers", () => {
|
|||
labels: [],
|
||||
projects: [],
|
||||
workspaces: [],
|
||||
liveOnly: false,
|
||||
hideRoutineExecutions: true,
|
||||
},
|
||||
}),
|
||||
|
|
@ -940,6 +947,7 @@ describe("inbox helpers", () => {
|
|||
labels: ["label-1"],
|
||||
projects: ["project-1"],
|
||||
workspaces: ["workspace-1"],
|
||||
liveOnly: true,
|
||||
hideRoutineExecutions: false,
|
||||
},
|
||||
});
|
||||
|
|
@ -954,6 +962,7 @@ describe("inbox helpers", () => {
|
|||
labels: [],
|
||||
projects: [],
|
||||
workspaces: [],
|
||||
liveOnly: false,
|
||||
hideRoutineExecutions: true,
|
||||
},
|
||||
});
|
||||
|
|
@ -969,6 +978,7 @@ describe("inbox helpers", () => {
|
|||
labels: ["label-1"],
|
||||
projects: ["project-1"],
|
||||
workspaces: ["workspace-1"],
|
||||
liveOnly: true,
|
||||
hideRoutineExecutions: false,
|
||||
},
|
||||
});
|
||||
|
|
@ -983,6 +993,7 @@ describe("inbox helpers", () => {
|
|||
labels: [],
|
||||
projects: [],
|
||||
workspaces: [],
|
||||
liveOnly: false,
|
||||
hideRoutineExecutions: true,
|
||||
},
|
||||
});
|
||||
|
|
@ -1000,6 +1011,7 @@ describe("inbox helpers", () => {
|
|||
labels: null,
|
||||
projects: ["project-1"],
|
||||
workspaces: ["workspace-1", false],
|
||||
liveOnly: "yes",
|
||||
hideRoutineExecutions: "yes",
|
||||
},
|
||||
}));
|
||||
|
|
@ -1015,6 +1027,7 @@ describe("inbox helpers", () => {
|
|||
labels: [],
|
||||
projects: ["project-1"],
|
||||
workspaces: ["workspace-1"],
|
||||
liveOnly: false,
|
||||
hideRoutineExecutions: false,
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue