mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-24 14:48:00 +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
40 lines
961 B
TypeScript
40 lines
961 B
TypeScript
// Copyright 2017-2025 @pezkuwi/util authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
/// <reference types="@pezkuwi/dev-test/globals.d.ts" />
|
|
|
|
import { stringify } from '../stringify.js';
|
|
import { perf } from '../test/index.js';
|
|
import { arrayRange, arrayShuffle } from './index.js';
|
|
|
|
const ptest = arrayRange(16284);
|
|
|
|
describe('arrayShuffle', (): void => {
|
|
it('returns an empty array as-is', (): void => {
|
|
expect(
|
|
arrayShuffle([])
|
|
).toEqual([]);
|
|
});
|
|
|
|
it('returns a single array as-is', (): void => {
|
|
expect(
|
|
arrayShuffle([100])
|
|
).toEqual([100]);
|
|
});
|
|
|
|
it('shuffles an array', (): void => {
|
|
const inp = arrayRange(100);
|
|
const out = arrayShuffle(inp);
|
|
|
|
expect(inp).toHaveLength(out.length);
|
|
expect(
|
|
inp.filter((v) => !out.includes(v))
|
|
).toEqual([]);
|
|
expect(
|
|
stringify(inp)
|
|
).not.toEqual(stringify(out));
|
|
});
|
|
|
|
perf('arrayShuffle', 1000, [[ptest]], arrayShuffle);
|
|
});
|