launcher: add start --dolt and startup guidance

This commit is contained in:
ZenchantLive 2026-03-03 16:19:01 -08:00
parent 8e4833f56d
commit 4c2ae2e5b7
5 changed files with 132 additions and 8 deletions

View file

@ -11,6 +11,7 @@ test('bb --help prints human-readable usage by default', async () => {
const { stdout } = await execFileAsync(process.execPath, [binPath, '--help']);
assert.match(stdout, /Usage:/i);
assert.match(stdout, /Runtime Commands:/i);
assert.match(stdout, /start \[--dolt\]/i);
assert.match(stdout, /Management Commands:/i);
assert.doesNotMatch(stdout, /^\s*\{/);
});