mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-12 04:37:13 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
18 lines
628 B
JavaScript
18 lines
628 B
JavaScript
import assert from 'assert';
|
|
import { getMethodName } from '../confirm-transaction-base.component';
|
|
|
|
describe('ConfirmTransactionBase Component', function () {
|
|
describe('getMethodName', function () {
|
|
it('should get correct method names', function () {
|
|
assert.strictEqual(getMethodName(undefined), '');
|
|
assert.strictEqual(getMethodName({}), '');
|
|
assert.strictEqual(getMethodName('confirm'), 'confirm');
|
|
assert.strictEqual(getMethodName('balanceOf'), 'balance Of');
|
|
assert.strictEqual(
|
|
getMethodName('ethToTokenSwapInput'),
|
|
'eth To Token Swap Input',
|
|
);
|
|
});
|
|
});
|
|
});
|