improve repo structure

This commit is contained in:
Rene Haas
2022-10-21 12:39:53 +02:00
parent 2599fc2cd1
commit b277dded6a
38 changed files with 28688 additions and 46301 deletions
@@ -0,0 +1,9 @@
import { test, expect } from 'vitest';
import { render, screen } from '@testing-library/react';
import { OverlayScrollbarsComponent } from '~/overlayscrollbars-react';
test('renders learn react link', () => {
render(<OverlayScrollbarsComponent msg="hi" />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});