UNPKG
namillum
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.1
1.0.0
Bubble Protocol SDK
github.com/ValentinaKohler/namillum
ValentinaKohler/namillum
namillum
/
needing-organisation
/
examples
/
js-library-examples
/
webpack
/
react
/
src
/
App.test.js
9 lines
(7 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ render, screen }
from
"@testing-library/react"
;
import
App
from
"./App"
;
test
(
"renders learn react link"
,
() =>
{
render
(
<
App
/>
);
const
linkElement = screen.
getByText
(
/learn react/i
);
expect
(linkElement).
toBeInTheDocument
(); });