Commit bb725e09 authored by Dan Abramov's avatar Dan Abramov
Browse files

Remove unnecessary describe()

parent 5645aa92
No related merge requests found
Showing with 3 additions and 5 deletions
+3 -5
...@@ -2,9 +2,7 @@ import React from 'react'; ...@@ -2,9 +2,7 @@ import React from 'react';
import ReactDOM from 'react-dom'; import ReactDOM from 'react-dom';
import App from './App'; import App from './App';
describe('App', () => { it('renders without crashing', () => {
it('renders without crashing', () => { const div = document.createElement('div');
const div = document.createElement('div'); ReactDOM.render(<App />, div);
ReactDOM.render(<App />, div);
});
}); });
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment