We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8154e1e commit 295ac4fCopy full SHA for 295ac4f
tests/index.js
@@ -831,12 +831,12 @@ t('bigint is returned as BigInt', async() => [
831
typeof (await sql`select 9223372036854777 as x`)[0].x
832
])
833
834
-ot('int is returned as Number', async() => [
+t('int is returned as Number', async() => [
835
'number',
836
typeof (await sql`select 123 as x`)[0].x
837
838
839
-ot('numeric is returned as string', async() => [
+t('numeric is returned as string', async() => [
840
'string',
841
typeof (await sql`select 1.2 as x`)[0].x
842
0 commit comments