mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 07:11:00 +00:00
99 lines
1.3 KiB
TypeScript
99 lines
1.3 KiB
TypeScript
import { getIconData } from '../lib/icon-set/get-icon';
|
|
|
|
describe('Testing getting icon data', () => {
|
|
test('Simple icon', () => {
|
|
// Short icon
|
|
const result1 = getIconData(
|
|
{
|
|
prefix: 'foo',
|
|
icons: {
|
|
bar: {
|
|
body: '<g />',
|
|
width: 24,
|
|
},
|
|
},
|
|
},
|
|
'bar',
|
|
false
|
|
);
|
|
expect(result1).toEqual({
|
|
body: '<g />',
|
|
width: 24,
|
|
});
|
|
|
|
// Full icon
|
|
const result2 = getIconData(
|
|
{
|
|
prefix: 'foo',
|
|
icons: {
|
|
bar: {
|
|
body: '<g />',
|
|
width: 24,
|
|
},
|
|
},
|
|
},
|
|
'bar',
|
|
true
|
|
);
|
|
expect(result2).toEqual({
|
|
body: '<g />',
|
|
left: 0,
|
|
top: 0,
|
|
width: 24,
|
|
height: 16,
|
|
rotate: 0,
|
|
vFlip: false,
|
|
hFlip: false,
|
|
});
|
|
});
|
|
|
|
test('Minified icon set', () => {
|
|
// Short icon
|
|
const result1 = getIconData(
|
|
{
|
|
prefix: 'foo',
|
|
icons: {
|
|
bar: {
|
|
body: '<g />',
|
|
},
|
|
},
|
|
width: 24,
|
|
height: 24,
|
|
},
|
|
'bar',
|
|
false
|
|
);
|
|
expect(result1).toEqual({
|
|
body: '<g />',
|
|
width: 24,
|
|
height: 24,
|
|
});
|
|
|
|
// Full icon
|
|
const result2 = getIconData(
|
|
{
|
|
prefix: 'foo',
|
|
icons: {
|
|
bar: {
|
|
body: '<g />',
|
|
},
|
|
},
|
|
width: 24,
|
|
height: 24,
|
|
},
|
|
'bar',
|
|
true
|
|
);
|
|
expect(result2).toEqual({
|
|
body: '<g />',
|
|
left: 0,
|
|
top: 0,
|
|
width: 24,
|
|
height: 24,
|
|
rotate: 0,
|
|
vFlip: false,
|
|
hFlip: false,
|
|
});
|
|
});
|
|
});
|