import { describe, test, expect } from 'vitest';
import { render } from '@testing-library/svelte';
// Test importing from exports
import Icon from '../../offline';
const iconData = {
body: '',
width: 24,
height: 24,
};
describe('Creating component', () => {
test('basic icon', () => {
const renderResult = render(Icon, { icon: iconData });
expect(
renderResult.container.innerHTML.replace(//gm, '')
).toEqual(
''
);
});
});