mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-07-30 23:35:42 +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
21 lines
574 B
TypeScript
21 lines
574 B
TypeScript
// Copyright 2017-2025 @pezkuwi/hw-ledger authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
/// <reference types="@pezkuwi/dev-test/globals.d.ts" />
|
|
|
|
import { supportedApps } from '@zondax/ledger-substrate';
|
|
|
|
import { prevLedgerRecord } from './defaults.js';
|
|
|
|
describe('ledgerApps', (): void => {
|
|
for (const k of Object.keys(prevLedgerRecord)) {
|
|
it(`${k} is available in @zondax/ledger-substrate`, (): void => {
|
|
expect(
|
|
supportedApps.find(({ name }) =>
|
|
name === prevLedgerRecord[k]
|
|
)
|
|
).toBeDefined();
|
|
});
|
|
}
|
|
});
|