2024-06-06 15:40:35 +03:00
|
|
|
/**
|
|
|
|
* @file Tests for the index file of npm package.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// The index.mjs file is generated on build before running tests
|
|
|
|
// @ts-ignore
|
2022-11-28 14:32:57 +03:00
|
|
|
import * as simpleIcons from '../index.mjs';
|
2024-03-24 20:38:18 +03:00
|
|
|
import {getIconSlug, getIconsData, slugToVariableName} from '../sdk.mjs';
|
|
|
|
import {testIcon} from './test-icon.js';
|
2021-11-06 18:03:37 +03:00
|
|
|
|
2023-08-08 07:38:52 +03:00
|
|
|
for (const icon of await getIconsData()) {
|
|
|
|
const slug = getIconSlug(icon);
|
|
|
|
const variableName = slugToVariableName(slug);
|
2024-06-06 15:40:35 +03:00
|
|
|
/** @type {import('../types.d.ts').SimpleIcon} */
|
|
|
|
// @ts-ignore
|
2023-08-08 07:38:52 +03:00
|
|
|
const subject = simpleIcons[variableName];
|
2019-07-14 22:05:38 +03:00
|
|
|
|
2023-08-08 07:38:52 +03:00
|
|
|
testIcon(icon, subject, slug);
|
|
|
|
}
|