UNPKG
@ecreeth/rn-ui
Version:
latest (1.0.9)
1.0.9
1.0.8
1.0.7
1.0.6
Highly customizable and theming components for React Native
github.com/ecreeth/rn-ui
ecreeth/rn-ui
@ecreeth/rn-ui
/
__tests__
/
components
/
Divider.test.js
10 lines
(7 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
;
import
renderer
from
'react-test-renderer'
;
import
Divider
from
'../../src/components/Divider'
;
it
(
'renders correctly'
,
() =>
{
const
tree = renderer.
create
(
<
Divider
/>
).
toJSON
();
expect
(tree).
toMatchSnapshot
(); });