Conversation
There was a problem hiding this comment.
this should not be committed.. add this to .gitignore and remove from the commit
| { email: "reviewer@example.com", role: "REVIEWER", name: "Reviewer User" }, | ||
| { email: "ambassador@example.com", role: "AMBASSADOR", name: "Ambassador User" }, |
There was a problem hiding this comment.
keep these commented.. gavin will be adding the dev emails soon
There was a problem hiding this comment.
this only covers startup form... add the tests for team and organization application forms.. but you can either do it in this PR or the next e2e test PR, up to you.
| await expect(page.locator("#contact")).toHaveValue("test@example.com"); | ||
| }); | ||
|
|
||
| test("startup application submit button is clickable when form is filled", async ({ |
There was a problem hiding this comment.
change it to, "startup application submit button is enabled when only required fields are filled"
cuz fundingSiteUrl is not a required field
| - NextAuth configured in `auth.ts` with Google provider | ||
| - Session provider wraps app in root `layout.tsx` | ||
| - Auth button component at `components/auth/AuthButton.tsx` | ||
| - RBAC roles defined but enforcement is TODO |
There was a problem hiding this comment.
RBAC already enforced... change it to, "RBAC enforced in API routes via requireRole() in lib/auth-helpers.ts"
No description provided.