1
0
mirror of https://github.com/yldio/copilot.git synced 2025-01-08 18:10:12 +02:00
copilot/spikes/graphql/apollo-redux/src/app.test.js

9 lines
208 B
JavaScript
Raw Normal View History

import React from 'react';
import ReactDOM from 'react-dom';
import App from './app';
it('renders without crashing', () => {
const div = document.createElement('div');
ReactDOM.render(<App />, div);
});