Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | /** |
||
26 | describe('Plugin Available', function () { |
||
27 | it('"$dialog" Should be a available on the created, mounted hooks', function () { |
||
28 | new Vue({ |
||
29 | created(){ |
||
30 | assert.property(this, '$dialog') |
||
31 | }, |
||
32 | mounted(){ |
||
33 | assert.property(this, '$dialog') |
||
34 | }, |
||
35 | render(){ |
||
36 | return '' |
||
37 | } |
||
38 | }).$mount() |
||
39 | }) |
||
40 | }) |
||
41 | |||
58 |