UNPKG
mystash
Version:
latest (0.2.0)
0.2.0
Personal finance app
github.com/jozsi/mystash
jozsi/mystash
mystash
/
src
/
frontend
/
__tests__
/
App.jsx
13 lines
(10 loc)
•
251 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** *
@jest
-environment jsdom */
import
React
from
'react'
;
import
ReactDOM
from
'react-dom'
;
import
App
from
'../App'
;
it
(
'renders without crashing'
,
async
() => {
const
div =
document
.
createElement
(
'div'
);
ReactDOM
.
render
(
<
App
/>
, div); });