import { render } from '@testing-library/svelte'; import { Icon } from '../../dist/iconify'; describe('Empty icon', () => { test('basic test', () => { const component = render(Icon, {}); const html = component.container.innerHTML; // Empty container div expect(html).toEqual('
'); }); });