Many improvemtns and fixes related to decoupling of svelte and rust on android.
🏗️ Build and Test JellyTau / Run Tests (push) Failing after 18s
🏗️ Build and Test JellyTau / Build Android APK (push) Has been skipped
Traceability Validation / Check Requirement Traces (push) Failing after 2s

This commit is contained in:
2026-02-28 19:50:47 +01:00
parent 07f3bf04ca
commit e8e37649fa
53 changed files with 2309 additions and 792 deletions
+4 -2
View File
@@ -85,8 +85,10 @@ describe("playbackMode store", () => {
// Call disconnect
await playbackMode.disconnect();
// Verify Rust backend was notified with correct mode
expect(mockInvoke).toHaveBeenCalledWith("playback_mode_set", { mode: "Idle" });
// Verify Rust backend was notified with correct mode (mode is now an object with type field)
expect(mockInvoke).toHaveBeenCalledWith("playback_mode_set", {
mode: { type: "idle" },
});
// Verify sessions.selectSession was called with null
expect(mockSelectSession).toHaveBeenCalledWith(null);