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.
16 lines
582 B
16 lines
582 B
4 years ago
|
import { getMethodName } from './confirm-transaction-base.component';
|
||
6 years ago
|
|
||
4 years ago
|
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(
|
||
4 years ago
|
'eth To Token Swap Input',
|
||
4 years ago
|
);
|
||
|
});
|
||
|
});
|
||
|
});
|