We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2c2e5e commit c918e31Copy full SHA for c918e31
app/api/health/route.test.ts
@@ -0,0 +1,6 @@
1
+import { expect, test } from 'vitest'
2
+import { GET } from './route'
3
+
4
+test('Get 200 health check response', () => {
5
+ expect(GET()).resolves.toHaveProperty("status",200)
6
+})
0 commit comments