feat: 50% almost code coverage

This commit is contained in:
Agusti Fernandez Pardo
2022-03-26 05:28:53 +01:00
parent 9233f143c6
commit 7998e8fc2c
25 changed files with 393 additions and 72 deletions
+3
View File
@@ -3,6 +3,9 @@ import { z } from "zod";
const schemaApiKey = z
.object({
// We need to cast the date as strings as when we get it from the json response
// we serve in api it is a string too (JSON doesn't directly support Date types)
createdAt: z.date().optional().or(z.string().optional()),
expiresAt: z.date().optional(), // default is 30 days
note: z.string().min(1).optional(),
})