This commit is contained in:
@@ -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 = [];
|
||||
|
||||
Reference in New Issue
Block a user