mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 05:38:03 +00:00
a5542fdd87
- Fixed internal @polkadot references to @pezkuwi - Updated hw-ledger and hw-ledger-transports packages - Updated keyring and networks packages - Version 14.0.7
15 lines
426 B
TypeScript
15 lines
426 B
TypeScript
// Copyright 2017-2025 @pezkuwi/util authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
/// <reference types="@pezkuwi/dev-test/globals.d.ts" />
|
|
|
|
import { compactAddLength } from './index.js';
|
|
|
|
describe('compactAddLength', (): void => {
|
|
it('correctly adds the length prefix', (): void => {
|
|
expect(
|
|
compactAddLength(Uint8Array.from([12, 13]))
|
|
).toEqual(Uint8Array.from([2 << 2, 12, 13]));
|
|
});
|
|
});
|