Allow typed prompts from armed state
Rolling release / release (push) Successful in 3m26s

This commit is contained in:
2026-09-11 17:36:20 -04:00
parent fcfcc0f6a7
commit 2f8f369f24
3 changed files with 11 additions and 1 deletions
+6
View File
@@ -14,6 +14,12 @@ test('voice state machine handles wake, reply, cancel, and idle sleep', () => {
assert.equal(voice.state, 'SLEEPING');
});
test('typed questions wake an armed voice session before thinking', () => {
const voice = new VoiceStateMachine();
voice.typedUtterance();
assert.equal(voice.state, 'THINKING');
});
test('QVAC scheduler prioritizes voice and keeps one active job', async () => {
const scheduler = new QvacScheduler();
const order = [];