mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 07:11:00 +00:00
23 lines
772 B
TypeScript
23 lines
772 B
TypeScript
import { describe } from 'vitest';
|
|
import { loadNodeIcon } from '../lib/loader/node-loader';
|
|
import { createExternalPackageIconLoader } from '../lib/loader/external-pkg';
|
|
|
|
describe('external-pkg', () => {
|
|
test('loadNodeIcon works with importModule and plain package name', async () => {
|
|
const result = await loadNodeIcon('plain-color-icons', 'about', {
|
|
customCollections:
|
|
createExternalPackageIconLoader('plain-color-icons'),
|
|
});
|
|
expect(result).toBeTruthy();
|
|
});
|
|
|
|
test('loadNodeIcon works with importModule and scoped package name', async () => {
|
|
const result = await loadNodeIcon('test-color-icons', 'about', {
|
|
customCollections: createExternalPackageIconLoader(
|
|
'@test-scope/test-color-icons'
|
|
),
|
|
});
|
|
expect(result).toBeTruthy();
|
|
});
|
|
});
|