Skip to content

Commit

Permalink
bigint sql test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
imaksp committed Feb 15, 2024
1 parent 4e4704d commit 0b731f4
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ const bedFixtures = [
sku: 'sleepybed_0152',
savEmail: '[email protected]',
type: 'foam',
serialNumber: 9999999999999999n,
// eslint-disable-next-line no-loss-of-precision
serialNumber: 9999999999999999,
peopleNumber: 6,
fabricThickness: 1.14157,
},
Expand All @@ -74,7 +75,7 @@ const bedFixtures = [
sku: 'tiredbed_0001',
savEmail: '[email protected]',
type: 'feather',
serialNumber: 1111111111111111n,
serialNumber: 1111111111111111,
peopleNumber: 1,
fabricThickness: 1.0001,
},
Expand Down

0 comments on commit 0b731f4

Please sign in to comment.