mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
9 lines
242 B
JavaScript
9 lines
242 B
JavaScript
import { calcGasTotal } from './transactions-controller-utils';
|
|
|
|
describe('calcGasTotal()', () => {
|
|
it('should correctly compute gasTotal', () => {
|
|
const result = calcGasTotal(12, 15);
|
|
expect(result).toStrictEqual('17a');
|
|
});
|
|
});
|