mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-03 14:44:27 +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.
30 lines
651 B
Plaintext
30 lines
651 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`TransactionBreakdownRow Component should match snapshot 1`] = `
|
|
<div>
|
|
<div
|
|
class="transaction-breakdown-row test-class"
|
|
data-testid="transaction-breakdown-row"
|
|
>
|
|
<div
|
|
class="transaction-breakdown-row__title"
|
|
data-testid="transaction-breakdown-row-title"
|
|
>
|
|
test
|
|
</div>
|
|
<div
|
|
class="transaction-breakdown-row__value"
|
|
data-testid="transaction-breakdown-row-value"
|
|
>
|
|
<button
|
|
class="button btn--rounded btn-default"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
Button
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|