import { h } from 'preact';
import Link from '../Link';
import { render, screen } from 'testing-library';
// eslint-disable-next-line jest/no-disabled-tests
describe.skip('Link', () => {
test('renders a link', async () => {
render(Hello);
expect(screen.queryByText('Hello')).toMatchInlineSnapshot(`
Hello
`);
});
});