mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
56 lines
1.3 KiB
Plaintext
56 lines
1.3 KiB
Plaintext
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
||
|
exports[`SendFooter Component Component Update should match snapshot when component updated with errors 1`] = `
|
||
|
<div>
|
||
|
<div
|
||
|
class="page-container__footer"
|
||
|
>
|
||
|
<footer>
|
||
|
<button
|
||
|
class="button btn--rounded btn-secondary page-container__footer-button"
|
||
|
data-testid="page-container-footer-cancel"
|
||
|
role="button"
|
||
|
tabindex="0"
|
||
|
>
|
||
|
[cancel]
|
||
|
</button>
|
||
|
<button
|
||
|
class="button btn--rounded btn-primary page-container__footer-button"
|
||
|
data-testid="page-container-footer-next"
|
||
|
role="button"
|
||
|
tabindex="0"
|
||
|
>
|
||
|
[next]
|
||
|
</button>
|
||
|
</footer>
|
||
|
</div>
|
||
|
</div>
|
||
|
`;
|
||
|
|
||
|
exports[`SendFooter Component should match snapshot 1`] = `
|
||
|
<div>
|
||
|
<div
|
||
|
class="page-container__footer"
|
||
|
>
|
||
|
<footer>
|
||
|
<button
|
||
|
class="button btn--rounded btn-secondary page-container__footer-button"
|
||
|
data-testid="page-container-footer-cancel"
|
||
|
role="button"
|
||
|
tabindex="0"
|
||
|
>
|
||
|
Cancel
|
||
|
</button>
|
||
|
<button
|
||
|
class="button btn--rounded btn-primary page-container__footer-button"
|
||
|
data-testid="page-container-footer-next"
|
||
|
role="button"
|
||
|
tabindex="0"
|
||
|
>
|
||
|
Next
|
||
|
</button>
|
||
|
</footer>
|
||
|
</div>
|
||
|
</div>
|
||
|
`;
|