mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-05 23:15:23 +01:00
14 lines
437 B
TypeScript
14 lines
437 B
TypeScript
import * as fixtures from '../__fixtures__/inputs';
|
|
import { transformTransaction } from '../src/index';
|
|
|
|
describe('plugins/stellar', () => {
|
|
describe('transformTransaction', () => {
|
|
fixtures.transformTransactionInputs.forEach(f => {
|
|
it(f.description, () => {
|
|
const resp = transformTransaction(f.path, f.tx);
|
|
expect(resp).toEqual(f.result);
|
|
});
|
|
});
|
|
});
|
|
});
|