File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -570,7 +570,15 @@ describe('UNIT: Directives', function () {
570
570
} )
571
571
572
572
describe ( 'component' , function ( ) {
573
- // body...
573
+
574
+ it ( 'should work with no args' , function ( ) {
575
+ assert . ok ( false )
576
+ } )
577
+
578
+ it ( 'should work with arg (passed-in model from parent)' , function ( ) {
579
+ assert . ok ( false )
580
+ } )
581
+
574
582
} )
575
583
576
584
describe ( 'component-id' , function ( ) {
Original file line number Diff line number Diff line change @@ -213,6 +213,30 @@ describe('UNIT: ViewModel', function () {
213
213
214
214
} )
215
215
216
+ describe ( '.$appendTo' , function ( ) {
217
+ it ( 'should pass' , function ( ) {
218
+ assert . ok ( false )
219
+ } )
220
+ } )
221
+
222
+ describe ( '.$before' , function ( ) {
223
+ it ( 'should pass' , function ( ) {
224
+ assert . ok ( false )
225
+ } )
226
+ } )
227
+
228
+ describe ( '.$after' , function ( ) {
229
+ it ( 'should pass' , function ( ) {
230
+ assert . ok ( false )
231
+ } )
232
+ } )
233
+
234
+ describe ( '.$remove' , function ( ) {
235
+ it ( 'should pass' , function ( ) {
236
+ assert . ok ( false )
237
+ } )
238
+ } )
239
+
216
240
describe ( '.$destroy' , function ( ) {
217
241
218
242
// since this simply delegates to Compiler.prototype.destroy(),
You can’t perform that action at this time.
0 commit comments