UNPKG
react-rollup-demo
Version:
latest (1.0.1)
1.0.1
1.0.0
REACT ROLLUP JS
react-rollup-demo
/
src
/
tests
/
Text.test.js
8 lines
(7 loc)
•
245 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
'react'
;
import
Text
from
'../components/text/Text'
;
import
{ render }
from
'@testing-library/react'
;
test
(
'renders text component correctly'
,
() =>
{
const
div =
document
.
createElement
(
'div'
);
render
(
<
Text
/>
, div) })