1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/ui/helpers/utils/collectibles.test.js
2023-01-25 08:08:35 -06:00

32 lines
867 B
JavaScript

import { getCollectibleImageAlt } from './collectibles';
describe('Collectibles Utils', () => {
describe('getCollectibleImageAlt', () => {
it('returns the description attribute when it is available', () => {
expect(
getCollectibleImageAlt({
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(
getCollectibleImageAlt({
name: 'Cool NFT',
tokenId: '555',
description: null,
}),
).toBe('Cool NFT 555');
expect(
getCollectibleImageAlt({
name: 'Cool NFT',
tokenId: '555',
}),
).toBe('Cool NFT 555');
});
});
});