Fix ongoing broadcast recording after connection error (#9974)

Co-authored-by: Andy Balaam <andy.balaam@matrix.org>
This commit is contained in:
Michael Weimann
2023-01-24 10:36:31 +00:00
committed by GitHub
co-authored by Andy Balaam
parent 533b250bb6
commit 7df973d569
3 changed files with 25 additions and 5 deletions
@@ -205,6 +205,22 @@ describe("VoiceBroadcastRecorder", () => {
});
});
});
describe("and calling stop() with recording.stop error)", () => {
let stopPayload: ChunkRecordedPayload;
beforeEach(async () => {
mocked(voiceRecording.stop).mockRejectedValue("Error");
stopPayload = await voiceBroadcastRecorder.stop();
});
it("should return the remaining chunk", () => {
expect(stopPayload).toEqual({
buffer: concat(headers1, headers2, chunk1),
length: 23,
});
});
});
});
describe("when some chunks have been received", () => {