mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 23:58:06 +01:00
b695901ff4
* Added code fences * Added code fencing * Improved code readable and added more tests * Improved tests * Remove code from other PR * Fixing code fences
61 lines
1.4 KiB
Plaintext
61 lines
1.4 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`TransactionStatusLabel Component should render CONFIRMED properly 1`] = `
|
|
<div>
|
|
<div
|
|
class="transaction-status-label transaction-status-label--confirmed"
|
|
>
|
|
June 1
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`TransactionStatusLabel Component should render PENDING properly 1`] = `
|
|
<div>
|
|
<div
|
|
class="transaction-status-label transaction-status-label--pending transaction-status-label--pending"
|
|
>
|
|
Pending
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`TransactionStatusLabel Component should render PENDING properly when status is APPROVED 1`] = `
|
|
<div>
|
|
<div
|
|
class="transaction-status-label transaction-status-label--pending transaction-status-label--pending"
|
|
>
|
|
<div
|
|
aria-describedby="tippy-tooltip-1"
|
|
class=""
|
|
data-original-title="test-title"
|
|
data-tooltipped=""
|
|
style="display: inline;"
|
|
tabindex="0"
|
|
>
|
|
Pending
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`TransactionStatusLabel Component should render QUEUED properly 1`] = `
|
|
<div>
|
|
<div
|
|
class="transaction-status-label transaction-status-label--queued transaction-status-label--queued"
|
|
>
|
|
Queued
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`TransactionStatusLabel Component should render UNAPPROVED properly 1`] = `
|
|
<div>
|
|
<div
|
|
class="transaction-status-label transaction-status-label--unapproved transaction-status-label--unapproved"
|
|
>
|
|
Unapproved
|
|
</div>
|
|
</div>
|
|
`;
|