2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-20 09:19:02 +00:00
iconify/packages/utils/tests/get-icon-test.ts

44 lines
645 B
TypeScript
Raw Normal View History

import { getIconData } from '../lib/icon-set/get-icon';
describe('Testing getting icon data', () => {
2021-09-20 20:53:49 +00:00
test('Simple icon', () => {
const result = getIconData(
{
prefix: 'foo',
icons: {
bar: {
body: '<g />',
width: 24,
},
},
},
'bar'
);
expect(result).toEqual({
body: '<g />',
width: 24,
});
});
2021-05-27 16:52:31 +00:00
2021-09-20 20:53:49 +00:00
test('Minified icon set', () => {
const result = getIconData(
2021-05-27 16:52:31 +00:00
{
prefix: 'foo',
icons: {
bar: {
body: '<g />',
},
},
width: 24,
height: 24,
},
'bar'
2021-05-27 16:52:31 +00:00
);
expect(result).toEqual({
2021-05-27 16:52:31 +00:00
body: '<g />',
width: 24,
height: 24,
});
});
});