node-go/play-node-go/src/pages/Game/Game.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 Game from './Game';
test('renders Game without crashing', () => {
const { getByTestId } = render(<Game />);
const GameDiv = getByTestId('Game');
expect(GameDiv).toBeInTheDocument();
});