Skip to content

Commit

Permalink
fix(client): expect bigint instead of int
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrln committed Jun 17, 2022
1 parent db25697 commit 1e9b001
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ test('raw-transaction: queryRaw', async () => {
Array [
Array [
Object {
1: 1,
1: 1n,
},
],
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('prisma promises', () => {
expect(queryRaw).toMatchInlineSnapshot(`
Array [
Object {
1: 1,
1: 1n,
},
]
`)
Expand Down Expand Up @@ -53,7 +53,7 @@ describe('prisma promises', () => {
expect(queryRaw).toMatchInlineSnapshot(`
Array [
Object {
1: 1,
1: 1n,
},
]
`)
Expand Down

0 comments on commit 1e9b001

Please sign in to comment.