2018-09-09 22:58:53 +03:00
|
|
|
const { icons } = require('../_data/simple-icons.json');
|
|
|
|
const simpleIcons = require('../index.js');
|
2021-11-08 13:55:47 +03:00
|
|
|
const { getIconSlug } = require('../scripts/utils');
|
2021-11-06 18:03:37 +03:00
|
|
|
|
2021-10-25 22:13:10 +03:00
|
|
|
icons.forEach((icon) => {
|
2021-05-25 19:40:11 +03:00
|
|
|
const slug = getIconSlug(icon);
|
2019-07-14 22:05:38 +03:00
|
|
|
|
2021-05-28 13:16:50 +03:00
|
|
|
test(`'Get' ${icon.title} by its slug`, () => {
|
|
|
|
const found = simpleIcons.Get(slug);
|
|
|
|
expect(found).toBeDefined();
|
|
|
|
expect(found.title).toEqual(icon.title);
|
|
|
|
expect(found.hex).toEqual(icon.hex);
|
|
|
|
expect(found.source).toEqual(icon.source);
|
|
|
|
});
|
|
|
|
|
|
|
|
test(`'get' ${icon.title} by its slug`, () => {
|
2021-05-25 19:40:11 +03:00
|
|
|
const found = simpleIcons.get(slug);
|
2019-07-14 22:05:38 +03:00
|
|
|
expect(found).toBeDefined();
|
|
|
|
expect(found.title).toEqual(icon.title);
|
2021-02-19 16:06:43 +03:00
|
|
|
expect(found.hex).toEqual(icon.hex);
|
|
|
|
expect(found.source).toEqual(icon.source);
|
2019-07-14 22:05:38 +03:00
|
|
|
});
|
2018-09-09 22:58:53 +03:00
|
|
|
});
|
2019-07-24 22:17:46 +03:00
|
|
|
|
|
|
|
test(`Iterating over simpleIcons only exposes icons`, () => {
|
|
|
|
const iconArray = Object.values(simpleIcons);
|
|
|
|
for (let icon of iconArray) {
|
|
|
|
expect(icon).toBeDefined();
|
|
|
|
expect(typeof icon).toBe('object');
|
|
|
|
}
|
|
|
|
});
|