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