oom-editor
Version:
Awsome markdown editor for oom community!
9 lines (8 loc) • 318 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { render, screen } from '@testing-library/react';
import App from './App';
test('renders learn react link', function () {
render(_jsx(App, {}, void 0));
var linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});