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.
15 lines
582 B
15 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',
|
|
);
|
|
});
|
|
});
|
|
});
|
|
|