2023-01-18 15:47:29 +01:00
|
|
|
// 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"
|
|
|
|
>
|
2023-04-28 13:41:16 +02:00
|
|
|
Pending
|
2023-01-18 15:47:29 +01:00
|
|
|
</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"
|
|
|
|
>
|
2023-04-28 13:41:16 +02:00
|
|
|
Pending
|
2023-01-18 15:47:29 +01:00
|
|
|
</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"
|
|
|
|
>
|
2023-04-28 13:41:16 +02:00
|
|
|
Queued
|
2023-01-18 15:47:29 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
|
|
|
exports[`TransactionStatusLabel Component should render UNAPPROVED properly 1`] = `
|
|
|
|
<div>
|
|
|
|
<div
|
|
|
|
class="transaction-status-label transaction-status-label--unapproved transaction-status-label--unapproved"
|
|
|
|
>
|
2023-04-28 13:41:16 +02:00
|
|
|
Unapproved
|
2023-01-18 15:47:29 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|