mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
This reverts commit f09ab8889148c406551dea1643966e3331fde4aa, reversing changes made to effc761e0ee4ea7ffb77f275b5ed650a7098d6f8. This is being temporarily reverted to make it easier to release an urgent fix for v10.15.1.
59 lines
1.6 KiB
JavaScript
59 lines
1.6 KiB
JavaScript
import {
|
|
TRANSACTION_GROUP_STATUSES,
|
|
TRANSACTION_STATUSES,
|
|
TRANSACTION_ENVELOPE_TYPES,
|
|
} from '../../../shared/constants/transaction';
|
|
import * as utils from './transactions.util';
|
|
|
|
describe('Transactions utils', () => {
|
|
describe('getStatusKey', () => {
|
|
it('should return the correct status', () => {
|
|
const tests = [
|
|
{
|
|
transaction: {
|
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
|
txReceipt: {
|
|
status: '0x0',
|
|
},
|
|
},
|
|
expected: TRANSACTION_STATUSES.FAILED,
|
|
},
|
|
{
|
|
transaction: {
|
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
|
txReceipt: {
|
|
status: '0x1',
|
|
},
|
|
},
|
|
expected: TRANSACTION_STATUSES.CONFIRMED,
|
|
},
|
|
{
|
|
transaction: {
|
|
status: TRANSACTION_GROUP_STATUSES.PENDING,
|
|
},
|
|
expected: TRANSACTION_GROUP_STATUSES.PENDING,
|
|
},
|
|
];
|
|
|
|
tests.forEach(({ transaction, expected }) => {
|
|
expect(utils.getStatusKey(transaction)).toStrictEqual(expected);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('isLegacyTransaction', () => {
|
|
it('should return true if transaction is type-0', () => {
|
|
expect(
|
|
utils.isLegacyTransaction({ type: TRANSACTION_ENVELOPE_TYPES.LEGACY }),
|
|
).toStrictEqual(true);
|
|
});
|
|
it('should return false if transaction is not type-0', () => {
|
|
expect(
|
|
utils.isLegacyTransaction({
|
|
type: TRANSACTION_ENVELOPE_TYPES.FEE_MARKET,
|
|
}),
|
|
).toStrictEqual(false);
|
|
});
|
|
});
|
|
});
|