You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Tag:
Branch:
Tree:
3a6966ac8a
develop
feature/default_network_editable
v10.22.3
${ noResults }
16 lines
582 B
16 lines
582 B
import { getMethodName } from './confirm-transaction-base.component';
|
|||
|
|||
describe('ConfirmTransactionBase Component', () => {
|
|||
describe('getMethodName', () => {
|
|||
it('should get correct method names', () => {
|
|||
expect(getMethodName(undefined)).toStrictEqual('');
|
|||
expect(getMethodName({})).toStrictEqual('');
|
|||
expect(getMethodName('confirm')).toStrictEqual('confirm');
|
|||
expect(getMethodName('balanceOf')).toStrictEqual('balance Of');
|
|||
expect(getMethodName('ethToTokenSwapInput')).toStrictEqual(
|
|||
'eth To Token Swap Input',
|
|||
);
|
|||
});
|
|||
});
|
|||
});
|