story-kit: merge 306_story_replace_manual_qa_boolean_with_configurable_qa_mode_field

This commit is contained in:
Dave
2026-03-19 11:56:39 +00:00
parent a058fa5f19
commit 2067abb2e5
12 changed files with 418 additions and 125 deletions

View File

@@ -507,6 +507,7 @@ mod tests {
component: vec![],
agent: vec![],
watcher: WatcherConfig::default(),
default_qa: "server".to_string(),
};
// Should complete without panic
run_setup_commands(tmp.path(), &config).await;
@@ -524,6 +525,7 @@ mod tests {
}],
agent: vec![],
watcher: WatcherConfig::default(),
default_qa: "server".to_string(),
};
// Should complete without panic
run_setup_commands(tmp.path(), &config).await;
@@ -541,6 +543,7 @@ mod tests {
}],
agent: vec![],
watcher: WatcherConfig::default(),
default_qa: "server".to_string(),
};
// Setup command failures are non-fatal — should not panic or propagate
run_setup_commands(tmp.path(), &config).await;
@@ -558,6 +561,7 @@ mod tests {
}],
agent: vec![],
watcher: WatcherConfig::default(),
default_qa: "server".to_string(),
};
// Teardown failures are best-effort — should not propagate
assert!(run_teardown_commands(tmp.path(), &config).await.is_ok());
@@ -574,6 +578,7 @@ mod tests {
component: vec![],
agent: vec![],
watcher: WatcherConfig::default(),
default_qa: "server".to_string(),
};
let info = create_worktree(&project_root, "42_fresh_test", &config, 3001)
.await
@@ -597,6 +602,7 @@ mod tests {
component: vec![],
agent: vec![],
watcher: WatcherConfig::default(),
default_qa: "server".to_string(),
};
// First creation
let _info1 = create_worktree(&project_root, "43_reuse_test", &config, 3001)
@@ -636,6 +642,7 @@ mod tests {
component: vec![],
agent: vec![],
watcher: WatcherConfig::default(),
default_qa: "server".to_string(),
};
let result = remove_worktree_by_story_id(tmp.path(), "99_nonexistent", &config).await;
@@ -658,6 +665,7 @@ mod tests {
component: vec![],
agent: vec![],
watcher: WatcherConfig::default(),
default_qa: "server".to_string(),
};
create_worktree(&project_root, "88_remove_by_id", &config, 3001)
.await
@@ -711,6 +719,7 @@ mod tests {
}],
agent: vec![],
watcher: WatcherConfig::default(),
default_qa: "server".to_string(),
};
// Even though setup commands fail, create_worktree must succeed
// so the agent can start and fix the problem itself.
@@ -736,6 +745,7 @@ mod tests {
component: vec![],
agent: vec![],
watcher: WatcherConfig::default(),
default_qa: "server".to_string(),
};
// First creation — no setup commands, should succeed
create_worktree(&project_root, "173_reuse_fail", &empty_config, 3001)
@@ -751,6 +761,7 @@ mod tests {
}],
agent: vec![],
watcher: WatcherConfig::default(),
default_qa: "server".to_string(),
};
// Second call — worktree exists, setup commands fail, must still succeed
let result =
@@ -773,6 +784,7 @@ mod tests {
component: vec![],
agent: vec![],
watcher: WatcherConfig::default(),
default_qa: "server".to_string(),
};
let info = create_worktree(&project_root, "77_remove_async", &config, 3001)
.await