diff --git a/libs/ledger-live-common/src/__tests__/test-helpers/bridge.ts b/libs/ledger-live-common/src/__tests__/test-helpers/bridge.ts index ed20c61cd08c..d69680bb0486 100644 --- a/libs/ledger-live-common/src/__tests__/test-helpers/bridge.ts +++ b/libs/ledger-live-common/src/__tests__/test-helpers/bridge.ts @@ -78,6 +78,7 @@ export function testBridge(data: DatasetTest): v currency: CryptoCurrency; }> = []; const { implementations, currencies } = data; + console.log({currencies}) Object.keys(currencies).forEach(currencyId => { const currencyData = currencies[currencyId]; const currency = getCryptoCurrencyById(currencyId); @@ -87,6 +88,7 @@ export function testBridge(data: DatasetTest): v }); const accounts = currencyData.accounts || []; + console.log({accounts}) accounts.forEach(accountData => implementations.forEach(impl => { console.log({accountDataImp: accountData.implementations})