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
+3
View File
@@ -167,8 +167,11 @@ test('install.sh seeds default config when missing and does not require first-ru
const config = JSON.parse(await readFile(path.join(home, '.config/jarvis/config.json'), 'utf8'));
assert.equal(config.wakePhrase, 'hey jarvis');
assert.equal(config.wakeCommand, 'jarvis-wake-bridge');
assert.equal(config.modelProfile, 'laptop-16gb');
assert.equal(config.ttsEnabled, true);
assert.equal(config.fsAccess, 'workspace');
assert.equal(config.freeVramOnIdle, true);
assert.match(result.stdout, /Jarvis is ready/);
assert.doesNotMatch(result.stdout, /first-run/);
const installSource = readFileSync(new URL('../packaging/install.sh', import.meta.url), 'utf8');