mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
33cc8d587a
* 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
32 lines
811 B
JavaScript
32 lines
811 B
JavaScript
import { getNftImageAlt } from './nfts';
|
|
|
|
describe('NFTs Utils', () => {
|
|
describe('getNftImageAlt', () => {
|
|
it('returns the description attribute when it is available', () => {
|
|
expect(
|
|
getNftImageAlt({
|
|
name: 'Cool NFT',
|
|
tokenId: '555',
|
|
description: 'This is a really cool NFT',
|
|
}),
|
|
).toBe('This is a really cool NFT');
|
|
});
|
|
|
|
it('returns the formatted name and tokenId attributes when a description is not present', () => {
|
|
expect(
|
|
getNftImageAlt({
|
|
name: 'Cool NFT',
|
|
tokenId: '555',
|
|
description: null,
|
|
}),
|
|
).toBe('Cool NFT 555');
|
|
expect(
|
|
getNftImageAlt({
|
|
name: 'Cool NFT',
|
|
tokenId: '555',
|
|
}),
|
|
).toBe('Cool NFT 555');
|
|
});
|
|
});
|
|
});
|