import { h } from 'preact';
import Link from '../Link';
import { render, screen } from '@testing-library/preact';
describe('Link', () => {
test('renders a link', async () => {
render(Hello);
expect(screen.queryByText('Hello')).toMatchInlineSnapshot(`
Hello
`);
});
});