Updates
Rolling release / release (push) Successful in 9m50s

This commit is contained in:
2026-09-11 20:55:17 -04:00
parent 06c9a23e19
commit af9c490532
6 changed files with 48 additions and 6 deletions
+13
View File
@@ -68,6 +68,19 @@ test('harness bridge recovers streamed text when final envelope is empty after a
assert.equal(reply.text, 'Your computer is ready.');
});
test('harness bridge resetContext disposes the current conversation', async () => {
let cancelled = false; let disposed = false;
const bridge = Object.create(HarnessBridge.prototype);
bridge.session = {
cancel() { cancelled = true; },
async dispose() { disposed = true; },
};
await bridge.resetContext();
assert.equal(cancelled, true);
assert.equal(disposed, true);
assert.equal(bridge.session, null);
});
test('QVAC scheduler prioritizes voice and keeps one active job', async () => {
const scheduler = new QvacScheduler();
const order = [];