-
Notifications
You must be signed in to change notification settings - Fork 0
Update heading text on Users page for testing purposes #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -27,7 +27,7 @@ export default function UsersRoute({ loaderData }: Route.ComponentProps) { | |||||
|
|
||||||
| return ( | ||||||
| <div className="container mt-36 mb-48 flex flex-col items-center justify-center gap-6"> | ||||||
| <h1 className="text-h1">Epic Notes Users</h1> | ||||||
| <h1 className="text-h1">Epic Notes Users Test</h1> | ||||||
|
||||||
| <h1 className="text-h1">Epic Notes Users Test</h1> | |
| <h1 className="text-h1">Epic Notes Users</h1> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change to the heading text will cause the existing end-to-end test in tests/e2e/search.test.ts to fail. The test currently checks for the exact text "Epic Notes Users" (line 11), but the heading has been updated to "Epic Notes Users Test". The test should be updated to match the new heading text.