1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix mock signature in test

This commit is contained in:
Erik Marks 2020-11-12 16:41:01 -08:00
parent 406f06dae8
commit 0dbeae583a

View File

@ -32,7 +32,8 @@ const mockGasPriceButtonGroupProps = {
gasEstimateType: GAS_ESTIMATE_TYPES.AVERAGE, gasEstimateType: GAS_ESTIMATE_TYPES.AVERAGE,
}, },
], ],
handleGasPriceSelection: (newPrice) => console.log('NewPrice: ', newPrice), handleGasPriceSelection: ({ gasPrice }) =>
console.log('NewPrice: ', gasPrice),
noButtonActiveByDefault: true, noButtonActiveByDefault: true,
showCheck: true, showCheck: true,
} }