// SPDX-FileCopyrightText: © 2024 LEDGER SAS // SPDX-License-Identifier: Apache-2.0 import { craftTransactionData } from './craftTransactionData' describe('craftTransactionData', () => { it('should return not supported tx data', () => { // @ts-expect-error intentionally passing empty object for negative-path test expect(craftTransactionData({})).toEqual({ type: 'none' }) }) })