mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-07-06 03:17:26 +00:00
fix: update to 14.0.12 with author and dependency fixes
- Author: Dijital Kurdistan Tech Institute <dev@pezkuwichain.io> - Fixed Uint8Array type errors in test files - Added @types/react-native devDependency for x-randomvalues - Added @pezkuwi/hw-ledger devDependency for networks tests - Added @pezkuwi/x-randomvalues devDependency for util tests - Updated all internal dependencies to 14.0.12
This commit is contained in:
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/util', path: 'auto', type: 'auto', version: '14.0.10' };
|
||||
export const packageInfo = { name: '@pezkuwi/util', path: 'auto', type: 'auto', version: '14.0.12' };
|
||||
|
||||
@@ -60,7 +60,7 @@ describe('u8aToHex', (): void => {
|
||||
it('returns the hex value where allowed < max', (): void => {
|
||||
expect(
|
||||
u8aToHex(
|
||||
new Uint8Array(Uint8Array.from([128, 0, 10, 11]), 64)
|
||||
Uint8Array.from([128, 0, 10, 11])
|
||||
)
|
||||
).toEqual('0x80000a0b');
|
||||
});
|
||||
|
||||
@@ -47,7 +47,7 @@ describe('u8aToHex', (): void => {
|
||||
it('returns the hex value where allowed < max', (): void => {
|
||||
expect(
|
||||
u8aToHex(
|
||||
new Uint8Array(Uint8Array.from([128, 0, 10, 11]), 64)
|
||||
Uint8Array.from([128, 0, 10, 11])
|
||||
)
|
||||
).toEqual('0x80000a0b');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user