node-go/play-node-go/src/pages/News/News.test.js

10 lines
276 B
JavaScript
Raw Normal View History

2020-01-16 05:59:05 +00:00
import React from 'react';
import { render } from '@testing-library/react';
import News from './News';
test('renders News without crashing', () => {
const { getByTestId } = render(<News />);
const NewsDiv = getByTestId('News');
expect(NewsDiv).toBeInTheDocument();
});