Skip to content

Commit 79ce72d

Browse files
Shawclaude
andcommitted
fix(typecheck): plugin-registry + plugin-app-manager ui/* path mappings + remotePlugins field rename
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 0bd3fc1 commit 79ce72d

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

packages/app/test/ui-smoke/helpers.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -521,6 +521,18 @@ export async function installDefaultAppRoutes(page: Page): Promise<void> {
521521
});
522522
});
523523

524+
await page.route("**/api/facewear/status", async (route) => {
525+
if (route.request().method() !== "GET") {
526+
await route.fallback();
527+
return;
528+
}
529+
await route.fulfill({
530+
status: 200,
531+
contentType: "application/json",
532+
body: JSON.stringify({ connected: false, devices: [] }),
533+
});
534+
});
535+
524536
await page.route("**/api/wallet/market-overview", async (route) => {
525537
if (route.request().method() !== "GET") {
526538
await route.fallback();

0 commit comments

Comments
 (0)