mirror of
https://github.com/docker/awesome-compose.git
synced 2026-07-01 02:50:32 +02:00
bed22c74f5
Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
10 lines
280 B
JavaScript
10 lines
280 B
JavaScript
import React from 'react';
|
|
import { render } from '@testing-library/react';
|
|
import App from './App';
|
|
|
|
test('renders learn react link', () => {
|
|
const { getByText } = render(<App />);
|
|
const linkElement = getByText(/learn react/i);
|
|
expect(linkElement).toBeInTheDocument();
|
|
});
|