1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 02:10:12 +01:00
metamask-extension/ui/pages/swaps/transaction-settings/__snapshots__/transaction-settings.test.js.snap
2023-06-15 20:17:21 +02:00

68 lines
1.7 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`TransactionSettings renders the component with initial props 1`] = `
<div
class="button-group transaction-settings__button-group radio-button-group"
role="radiogroup"
>
<button
aria-checked="false"
class="button-group__button radio-button"
data-testid="button-group__button0"
role="radio"
>
2%
</button>
<button
aria-checked="true"
class="button-group__button radio-button button-group__button--active radio-button--active"
data-testid="button-group__button1"
role="radio"
>
3%
</button>
<button
aria-checked="false"
class="button-group__button transaction-settings__button-group-custom-button radio-button"
data-testid="button-group__button2"
role="radio"
>
custom
</button>
</div>
`;
exports[`TransactionSettings renders the component with the smart transaction opt-in button available, opt into STX 1`] = `null`;
exports[`TransactionSettings renders the component with the smart transaction opt-in button available, opt into STX 2`] = `
<div
class="button-group transaction-settings__button-group radio-button-group"
role="radiogroup"
>
<button
aria-checked="false"
class="button-group__button radio-button"
data-testid="button-group__button0"
role="radio"
>
2%
</button>
<button
aria-checked="true"
class="button-group__button radio-button button-group__button--active radio-button--active"
data-testid="button-group__button1"
role="radio"
>
3%
</button>
<button
aria-checked="false"
class="button-group__button transaction-settings__button-group-custom-button radio-button"
data-testid="button-group__button2"
role="radio"
>
custom
</button>
</div>
`;