mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
3be1fc6d0c
* converted collectibles files to nfts * updated relative import for scss * updated scss for pages
61 lines
1.6 KiB
Plaintext
61 lines
1.6 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Collectible Default Image should match snapshot with all provided props 1`] = `
|
|
<div>
|
|
<button
|
|
class="collectible-default collectible-default--clickable"
|
|
data-testid="collectible-default-image"
|
|
tabindex="0"
|
|
>
|
|
<h6
|
|
class="box box--margin-top-1 box--margin-bottom-1 box--flex-direction-row typography collectible-default__text typography--h6 typography--weight-normal typography--style-normal typography--color-text-default"
|
|
>
|
|
Collectible Name
|
|
|
|
<br />
|
|
#
|
|
123
|
|
</h6>
|
|
</button>
|
|
</div>
|
|
`;
|
|
|
|
exports[`Collectible Default Image should match snapshot with missing image click handler 1`] = `
|
|
<div>
|
|
<div
|
|
class="collectible-default"
|
|
data-testid="collectible-default-image"
|
|
tabindex="0"
|
|
>
|
|
<h6
|
|
class="box box--margin-top-1 box--margin-bottom-1 box--flex-direction-row typography collectible-default__text typography--h6 typography--weight-normal typography--style-normal typography--color-text-default"
|
|
>
|
|
Collectible Name
|
|
|
|
<br />
|
|
#
|
|
123
|
|
</h6>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`Collectible Default Image should render with no props 1`] = `
|
|
<div>
|
|
<div
|
|
class="collectible-default"
|
|
data-testid="collectible-default-image"
|
|
tabindex="0"
|
|
>
|
|
<h6
|
|
class="box box--margin-top-1 box--margin-bottom-1 box--flex-direction-row typography collectible-default__text typography--h6 typography--weight-normal typography--style-normal typography--color-text-default"
|
|
>
|
|
[unknownCollection]
|
|
|
|
<br />
|
|
#
|
|
</h6>
|
|
</div>
|
|
</div>
|
|
`;
|