UNPKG
@ishitatsuyuki/oruga-next
Version:
latest (0.5.5-direct-export)
0.5.5-direct-export
UI components for Vue.js and CSS framework agnostic
oruga.io
oruga-ui/oruga
@ishitatsuyuki/oruga-next
/
src
/
components
/
skeleton
/
Skeleton.spec.js
15 lines
(11 loc)
•
298 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
{ mount }
from
'@vue/test-utils'
import
OSkeleton
from
'@components/skeleton/Skeleton'
let
wrapper
describe
(
'OSkeleton'
,
() =>
{
beforeEach
(
() =>
{ wrapper =
mount
(
OSkeleton
) })
it
(
'render correctly'
,
() =>
{
expect
(wrapper.
html
()).
toMatchSnapshot
() }) })