Skip to content

Commit 003cc76

Browse files
committed
test(typegen): update test snapshot after update with master
1 parent 5d69154 commit 003cc76

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

test/server/typegen.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ test('typegen', async () => {
6969
id: number
7070
"user-id": number
7171
blurb: string | null
72+
blurb_varchar: string | null
73+
details_is_long: boolean | null
74+
details_length: number | null
7275
}
7376
Insert: {
7477
details?: string | null
@@ -278,6 +281,24 @@ test('typegen', async () => {
278281
}
279282
Returns: string
280283
}
284+
blurb_varchar: {
285+
Args: {
286+
"": unknown
287+
}
288+
Returns: string
289+
}
290+
details_is_long: {
291+
Args: {
292+
"": unknown
293+
}
294+
Returns: boolean
295+
}
296+
details_length: {
297+
Args: {
298+
"": unknown
299+
}
300+
Returns: number
301+
}
281302
function_returning_row: {
282303
Args: Record<PropertyKey, never>
283304
Returns: {

0 commit comments

Comments
 (0)