UNPKG
dash-table-experiments
Version:
latest (0.6.0)
0.6.0
0.6.0-rc1
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.4.0
0.3.0
0.2.3
0.2.2
0.2.0
0.1.0
0.0.3
Dash table experiments
github.com/plotly/dash-table-experiments
plotly/dash-table-experiments
dash-table-experiments
/
src
/
components
/
__tests__
/
ExampleComponent.test.js
11 lines
(8 loc)
•
215 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
;
import
{shallow}
from
'enzyme'
;
describe
(
'ExampleComponent'
,
() =>
{
it
(
'renders'
,
() =>
{
const
component =
shallow
(
<
div
/>
);
expect
(component).
to
.
be
.
ok
; }); });