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.
14 lines
476 B
14 lines
476 B
3 years ago
|
import { getMethodName } from './metrics';
|
||
|
|
||
|
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',
|
||
|
);
|
||
|
});
|
||
|
});
|