2022-03-03 23:36:30 +00:00
|
|
|
import { FileSystemIconLoader } from '../lib/loader/node-loaders';
|
|
|
|
|
|
|
|
const fixturesDir = './tests/fixtures';
|
2022-03-02 17:55:03 +00:00
|
|
|
|
|
|
|
describe('Testing FileSystemIconLoader', () => {
|
|
|
|
test('FileSystemIconLoader', async () => {
|
2022-03-14 14:39:40 +00:00
|
|
|
const result = await FileSystemIconLoader(fixturesDir)('circle');
|
2022-03-02 17:55:03 +00:00
|
|
|
expect(result && result.indexOf('svg') > -1).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
2022-06-17 20:10:54 +00:00
|
|
|
test('FileSystemIconLoader cleanups svg preface', async () => {
|
|
|
|
const result = await FileSystemIconLoader(fixturesDir)(
|
|
|
|
'circle-xml-preface'
|
|
|
|
);
|
|
|
|
expect(result && result.indexOf('<svg') === 0).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
2022-03-02 17:55:03 +00:00
|
|
|
test('FileSystemIconLoader with transform', async () => {
|
2022-03-14 14:39:40 +00:00
|
|
|
const result = await FileSystemIconLoader(fixturesDir, (icon) => {
|
|
|
|
return icon.replace('<svg ', '<svg width="1em" height="1em" ');
|
|
|
|
})('circle');
|
2022-03-02 17:55:03 +00:00
|
|
|
expect(result && result.indexOf('width="1em"') > -1).toBeTruthy();
|
|
|
|
expect(result && result.indexOf('height="1em"') > -1).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|