1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00
metamask-extension/ui/helpers/utils/nfts.test.js

32 lines
811 B
JavaScript
Raw Normal View History

import { getNftImageAlt } from './nfts';
2023-01-25 15:08:35 +01:00
describe('NFTs Utils', () => {
describe('getNftImageAlt', () => {
2023-01-25 15:08:35 +01:00
it('returns the description attribute when it is available', () => {
expect(
getNftImageAlt({
2023-01-25 15:08:35 +01:00
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({
2023-01-25 15:08:35 +01:00
name: 'Cool NFT',
tokenId: '555',
description: null,
}),
).toBe('Cool NFT 555');
expect(
getNftImageAlt({
2023-01-25 15:08:35 +01:00
name: 'Cool NFT',
tokenId: '555',
}),
).toBe('Cool NFT 555');
});
});
});