mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
8075a39567
* Add transaction activity log component * Remove duplicate tx activity log snapshot. * Convert tx breakdown row to tlr. * Convert tx status component to tlr. * Convert User Preferenced Currency Display test to tlr. * Consolidate and convert user-preferenced-currency-input.test.js to tlr. * Consolidate and convert user-preferenced-token-input test to tlr.
46 lines
925 B
Plaintext
46 lines
925 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`UserPreferencedCurrencyInput Component rendering should match snapshot 1`] = `
|
|
<div>
|
|
<div
|
|
class="unit-input"
|
|
>
|
|
<div
|
|
class="unit-input__inputs"
|
|
>
|
|
<div
|
|
class="unit-input__input-container"
|
|
>
|
|
<input
|
|
class="unit-input__input"
|
|
data-testid="currency-input"
|
|
dir="ltr"
|
|
placeholder="0"
|
|
style="width: 1.5ch;"
|
|
type="number"
|
|
value="0"
|
|
/>
|
|
<div
|
|
class="unit-input__suffix"
|
|
>
|
|
ETH
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="currency-input__conversion-component"
|
|
>
|
|
No conversion rate available
|
|
</div>
|
|
</div>
|
|
<button
|
|
class="currency-input__swap-component"
|
|
data-testid="currency-swap"
|
|
>
|
|
<i
|
|
class="fa fa-retweet fa-lg"
|
|
/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
`;
|