From 8a4b6c870c52d5c1dbfdf93f7934ff4148b588e1 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Thu, 28 Jan 2021 10:58:09 +0000 Subject: [PATCH] tests: U128_MAX helper constant --- --- a/tests/src/util/helpers.ts +++ b/tests/src/util/helpers.ts @@ -21,6 +21,8 @@ chai.use(chaiAsPromised); const expect = chai.expect; +export const U128_MAX = (1n << 128n) - 1n; + type GenericResult = { success: boolean, }; -- gitstuff