Avatar Customization + Update Agent Brain (#23)

Co-authored-by: iamlukethedev <iamlukethedev@users.noreply.github.com>
This commit is contained in:
Luke The Dev
2026-03-20 23:05:14 -05:00
committed by GitHub
parent a5b0895dd8
commit 65c2b9cf85
39 changed files with 2803 additions and 551 deletions
+4 -7
View File
@@ -5,13 +5,10 @@ test.beforeEach(async ({ page }) => {
await stubStudioRoute(page);
});
test("connection panel reflects disconnected state", async ({ page }) => {
test("office settings panel reflects current gateway state", async ({ page }) => {
await page.goto("/");
await page.getByTestId("studio-menu-toggle").click();
await page.getByTestId("gateway-settings-toggle").click();
await expect(page.getByLabel("Upstream URL")).toBeVisible();
await expect(
page.getByRole("button", { name: /^(Connect|Disconnect)$/ })
).toBeVisible();
await page.getByTitle("Voice reply settings").click();
await expect(page.getByRole("button", { name: "Disconnect gateway" })).toBeVisible();
await expect(page.getByText("Current studio connection and endpoint details.")).toBeVisible();
});