1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-27 04:46:10 +01:00
metamask-extension/ui/components/app/nft-default-image/__snapshots__/nft-default-image.test.js.snap
Nidhi Kumari 33cc8d587a
NFT: Replaced all the instances of collectibles with NFTs (#17741)
* replaced all the instances of collectibles with nfts

* updated actions

* updated e2e seeder

* updated confirm Approve test

* updated test dapp change

* updated test dapp change

* nit fix

* nit fix

* updated casing and snapshots

* updated casinG

* added migrations

* updated ,igration

* updated 078.test

* updated tests for 078 migration

* updated migration

* updated 078 index.js
2023-02-17 00:53:29 +05:30

61 lines
1.5 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`NFT Default Image should match snapshot with all provided props 1`] = `
<div>
<button
class="nft-default nft-default--clickable"
data-testid="nft-default-image"
tabindex="0"
>
<h6
class="box box--margin-top-1 box--margin-bottom-1 box--flex-direction-row typography nft-default__text typography--h6 typography--weight-normal typography--style-normal typography--color-text-default"
>
NFT Name
<br />
#
123
</h6>
</button>
</div>
`;
exports[`NFT Default Image should match snapshot with missing image click handler 1`] = `
<div>
<div
class="nft-default"
data-testid="nft-default-image"
tabindex="0"
>
<h6
class="box box--margin-top-1 box--margin-bottom-1 box--flex-direction-row typography nft-default__text typography--h6 typography--weight-normal typography--style-normal typography--color-text-default"
>
NFT Name
<br />
#
123
</h6>
</div>
</div>
`;
exports[`NFT Default Image should render with no props 1`] = `
<div>
<div
class="nft-default"
data-testid="nft-default-image"
tabindex="0"
>
<h6
class="box box--margin-top-1 box--margin-bottom-1 box--flex-direction-row typography nft-default__text typography--h6 typography--weight-normal typography--style-normal typography--color-text-default"
>
[unknownCollection]
<br />
#
</h6>
</div>
</div>
`;