Skip to content
This repository was archived by the owner on Dec 26, 2018. It is now read-only.

Commit e0cfdcf

Browse files
committed
finished tests for enabled prop.
1 parent cf3ea87 commit e0cfdcf

File tree

1 file changed

+46
-12
lines changed

1 file changed

+46
-12
lines changed

test/unit/enabledProp.js

+46-12
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,66 @@ import {
1414

1515
let vt
1616

17-
test.skip('before', t => {
17+
test('prop is true by default & events are enabled', t => {
18+
t.plan(2)
1819

19-
vt = createFromTemplate(`
20+
const vt = createFromTemplate(`
2021
<v-touch
2122
@tap="cb"
2223
@swipe="cb"
2324
/>
2425
`)
26+
const propEnabled = vt.enabled
27+
t.true(propEnabled)
28+
29+
const rcEnabled = isEnabled(vt, 'tap')
30+
t.true(rcEnabled)
2531
})
2632

27-
test('prop is true by default & events are enabled', t => {
33+
test('all rcg disabled when enabled="false"', t => {
2834
t.plan(2)
2935

30-
vt = createFromTemplate(`
36+
const vt = createFromTemplate(`
3137
<v-touch
32-
@tap="cb"
33-
@swipe="cb"
38+
v-bind:enabled="false"
39+
v-on:tap="cb"
40+
v-on:swipe="cb"
3441
/>
3542
`)
36-
const propEnabled = vt.enabled
37-
t.true(propEnabled)
3843

39-
const rcEnabled = isEnabled(vm, 'tap')
40-
t.true(rcEnabled)
44+
t.false(vt.enabled)
45+
const areAllDisabled = allDisabled(vt)
46+
t.true(areAllDisabled)
4147
})
4248

43-
test.todo('all rcg disabled when enabled="false"')
49+
test.cb('Passing obj to enabled prop correctly toggles recognizers', t => {
50+
t.plan(2)
51+
52+
const vt = createFromTemplate(`
53+
<v-touch
54+
v-bind:enabled="{ tap: true, swipe: false }"
55+
v-on:tap="cb"
56+
v-on:swipe="cb"
57+
/>
58+
`)
59+
60+
vt.$nextTick()
61+
.then(() => {
62+
const tapEnabled = isEnabled(vt, 'tap')
63+
const swipeDisabled = isDisabled(vt, 'swipe')
64+
t.true(tapEnabled && swipeDisabled)
65+
})
66+
67+
.then(() => {
68+
vt.updateEnabled({ tap: false, swipe: true })
4469

45-
test.todo('Passing obj to enabled prop correctly toggles recognizers')
70+
return vt.$nextTick()
71+
})
72+
73+
.then(() => {
74+
const tapDisabled = isDisabled(vt, 'tap')
75+
const swipeEnabled= isEnabled(vt, 'swipe')
76+
t.true(tapDisabled && swipeEnabled)
77+
t.end()
78+
})
79+
})

0 commit comments

Comments
 (0)