v0.3.7-pre.013-fix.001

This commit is contained in:
2026-09-02 21:14:15 +02:00
parent fa04bdbcf6
commit 0847edda4c
4 changed files with 104 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-app-backfill-desk/tests/desktop_contract.rs
// version: 15
// version: 16
//! Structural desktop contract checks for the Backfill Desk scaffold.
@@ -458,7 +458,7 @@ fn pre_013_final_v1_command_and_frontend_control_inventory_is_exact() {
assert!(!tauri.contains(forbidden), "unexpected V1 Tauri command marker {forbidden}");
}
let frontend = read_text(root.join("frontend/main.html").as_path());
for required in ["backfillStart", "backfillCancel", "backfillResume", "backfillRefresh", "backfillProgramIds"] {
for required in ["startBackfillRequest", "cancelBackfillRun", "resumeBackfillRun", "refreshBackfillStatus", "backfillProgramIds"] {
assert!(frontend.contains(required), "missing final frontend control {required}");
}
}