UNPKG
lulouis-vant
Version:
latest (1.5.9)
1.5.9
1.5.8
Lightweight Mobile UI Components built on Vue
github.com/lulouis/vant
lulouis/vant
lulouis-vant
/
packages
/
cell
/
test
/
index.spec.js
10 lines
(7 loc)
•
219 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
Cell
from
'..'
;
import
{ mount }
from
'../../../test/utils'
;
test
(
'click event'
,
() =>
{
const
wrapper =
mount
(
Cell
); wrapper.
trigger
(
'click'
);
expect
(wrapper.
emitted
(
'click'
)).
toBeTruthy
(); });