mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
14 lines
476 B
JavaScript
14 lines
476 B
JavaScript
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',
|
|
);
|
|
});
|
|
});
|