node-go/play-node-go/src/pages/Game/Game.test.js
2020-01-15 21:59:05 -08:00

9 lines
276 B
JavaScript

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();
});