fix: adress pr comments

This commit is contained in:
Shirone
2026-01-21 16:00:40 +01:00
parent afa93dde0d
commit b73885e04a
5 changed files with 99 additions and 61 deletions

View File

@@ -174,7 +174,7 @@ export function useTestRunners(worktreePath?: string) {
const result = await api.worktree.getTestLogs(worktreePath);
if (result.success && result.result) {
const { sessionId, runner, status, testFile, logs, startedAt, finishedAt, exitCode } =
const { sessionId, command, status, testFile, logs, startedAt, finishedAt, exitCode } =
result.result;
// Only add if we don't already have this session
@@ -183,7 +183,7 @@ export function useTestRunners(worktreePath?: string) {
startSession({
sessionId,
worktreePath,
runner,
command,
status,
testFile,
startedAt,