Skip to content

Commit 2181072

Browse files
Set up http streamable client ping tests (#1)
Co-authored-by: me <[email protected]> Co-authored-by: Cursor Agent <[email protected]>
1 parent 49f6c4b commit 2181072

39 files changed

+662
-266
lines changed

epicshop/epic-me/app/routes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { type RouteConfig, index, route } from '@react-router/dev/routes'
33
export default [
44
index('routes/index.tsx'),
55
route('/authorize', 'routes/authorize.tsx'),
6-
route('/whoami', 'routes/whoami.tsx'),
6+
route('/healthcheck', 'routes/healthcheck.tsx'),
77
route('/db-api', 'routes/db-api.tsx'),
88
route('/introspect', 'routes/introspect.tsx'),
99
] satisfies RouteConfig
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export async function loader() {
2+
return new Response('ok')
3+
}

epicshop/epic-me/app/routes/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export default function Home({ loaderData }: Route.ComponentProps) {
189189

190190
{user.entries.length > 0 ? (
191191
<div className="space-y-3">
192-
<h4 className="text-sm font-medium uppercase tracking-wide text-gray-600 dark:text-gray-400">
192+
<h4 className="text-sm font-medium tracking-wide text-gray-600 uppercase dark:text-gray-400">
193193
Entries ({user.entries.length})
194194
</h4>
195195
<div className="grid gap-3">
@@ -270,7 +270,7 @@ export default function Home({ loaderData }: Route.ComponentProps) {
270270

271271
{user.tags.length > 0 && (
272272
<div className="mt-6">
273-
<h4 className="mb-3 text-sm font-medium uppercase tracking-wide text-gray-600 dark:text-gray-400">
273+
<h4 className="mb-3 text-sm font-medium tracking-wide text-gray-600 uppercase dark:text-gray-400">
274274
Tags ({user.tags.length})
275275
</h4>
276276
<div className="grid gap-2">

epicshop/epic-me/app/routes/whoami.tsx

Lines changed: 0 additions & 249 deletions
This file was deleted.

exercises/01.start/01.problem/package.json renamed to exercises/01.start/01.solution/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "exercises_01.start_01.problem",
2+
"name": "exercises_01.start_01.solution",
33
"private": true,
44
"type": "module",
55
"scripts": {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)