1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-02 14:15:06 +01:00
metamask-extension/ui/components/app/nft-default-image/__snapshots__/nft-default-image.test.js.snap

61 lines
1.7 KiB
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`NFT Default Image should match snapshot with all provided props 1`] = `
<div>
<div
class="box nft-default nft-default--clickable box--display-flex box--flex-direction-row box--width-full box--background-color-background-alternative box--rounded-lg"
data-testid="nft-default-image"
tabindex="0"
>
<h6
class="box mm-text nft-default__text mm-text--body-sm mm-text--ellipsis mm-text--text-align-center box--flex-direction-row box--color-text-default"
>
NFT Name
<br />
#
123
</h6>
</div>
</div>
`;
exports[`NFT Default Image should match snapshot with missing clickable prop 1`] = `
<div>
<div
class="box nft-default box--display-flex box--flex-direction-row box--width-full box--background-color-background-alternative box--rounded-lg"
data-testid="nft-default-image"
tabindex="0"
>
<h6
class="box mm-text nft-default__text mm-text--body-sm mm-text--ellipsis mm-text--text-align-center box--flex-direction-row box--color-text-default"
>
NFT Name
<br />
#
123
</h6>
</div>
</div>
`;
exports[`NFT Default Image should render with no props 1`] = `
<div>
<div
class="box nft-default box--display-flex box--flex-direction-row box--width-full box--background-color-background-alternative box--rounded-lg"
data-testid="nft-default-image"
tabindex="0"
>
<h6
class="box mm-text nft-default__text mm-text--body-sm mm-text--ellipsis mm-text--text-align-center box--flex-direction-row box--color-text-default"
>
[unknownCollection]
<br />
#
</h6>
</div>
</div>
`;