Updates
Rolling release / release (push) Successful in 7m21s

This commit is contained in:
2026-09-12 09:40:42 -04:00
parent a4073b9020
commit f26204505e
23 changed files with 531 additions and 114 deletions
+9 -1
View File
@@ -171,5 +171,13 @@ test('a disabled microphone never starts capture while speech output remains ava
const capture = new EventEmitter(); capture.start = () => assert.fail('microphone should be disabled');
const loop = new VoiceLoop({ capture, asr: null, tts: { start: async () => {} } });
await loop.start();
assert.equal(loop.status.capture, false); assert.equal(loop.status.asr, false); assert.equal(loop.status.tts, true);
assert.equal(loop.status.capture, false); assert.equal(loop.status.asr, false); assert.equal(loop.status.tts, false);
assert.equal(await loop.ensureTts(), true); assert.equal(loop.status.tts, true);
});
test('catalog defaults enable CPU wake, workspace files, and idle VRAM unload', () => {
const settings = voiceSettings({});
assert.equal(settings.fsAccess, 'workspace');
assert.equal(settings.freeVramOnIdle, true);
assert.equal(settings.wakeCommand, 'jarvis-wake-bridge');
});