style: format quickstart note and media-note test

This commit is contained in:
Onur
2026-01-08 15:30:54 +03:00
committed by Peter Steinberger
parent c469fac8ef
commit 0bc50abd73
2 changed files with 2 additions and 8 deletions

View File

@@ -32,10 +32,7 @@ async function withTempHome<T>(fn: (home: string) => Promise<T>): Promise<T> {
const previousHome = process.env.HOME;
const previousBundledSkills = process.env.CLAWDBOT_BUNDLED_SKILLS_DIR;
process.env.HOME = base;
process.env.CLAWDBOT_BUNDLED_SKILLS_DIR = path.join(
base,
"bundled-skills",
);
process.env.CLAWDBOT_BUNDLED_SKILLS_DIR = path.join(base, "bundled-skills");
try {
vi.mocked(runEmbeddedPiAgent).mockReset();
return await fn(base);

View File

@@ -218,10 +218,7 @@ export async function runOnboardingWizard(
"Tailscale exposure: Off",
"Direct to chat providers.",
];
await prompter.note(
quickstartLines.join("\n"),
"QuickStart",
);
await prompter.note(quickstartLines.join("\n"), "QuickStart");
}
const localPort = resolveGatewayPort(baseConfig);