Merge branch 'main' into SaaS

This commit is contained in:
Anthony Stirling
2026-06-10 14:58:44 +01:00
committed by GitHub
93 changed files with 6398 additions and 2421 deletions
@@ -10,6 +10,7 @@ export function useChat() {
isOpen: false,
isLoading: false,
progress: null,
progressLog: [] as never[],
toggleOpen: () => {},
setOpen: (_open: boolean) => {},
sendMessage: async (_content: string) => {},
@@ -19,12 +19,7 @@ test.describe("1. Authentication and Login", () => {
.first(),
).toBeVisible();
// Step 3: Confirm the heading for "Sign In" / "Login" is visible
await expect(
page.getByRole("heading", { name: /sign in|login|masuk/i }),
).toBeVisible();
// Step 4: Confirm a "Username" text input field is present and empty
// Step 3: Confirm a "Username" text input field is present and empty
const usernameInput = page.locator("#email");
await expect(usernameInput).toBeVisible();
await expect(usernameInput).toHaveValue("");