mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
10 lines
274 B
TypeScript
10 lines
274 B
TypeScript
import '@testing-library/jest-dom';
|
|
import { render } from '@testing-library/svelte';
|
|
import { Tooltip } from '../../../src/lib/components';
|
|
|
|
test('shows tooltip', () => {
|
|
const { getByRole } = render(Tooltip);
|
|
|
|
expect(getByRole('tooltip')).toBeInTheDocument();
|
|
});
|