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 () {
570570 } )
571571
572572 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+
574582 } )
575583
576584 describe ( 'component-id' , function ( ) {
Original file line number Diff line number Diff line change @@ -213,6 +213,30 @@ describe('UNIT: ViewModel', function () {
213213
214214 } )
215215
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+
216240 describe ( '.$destroy' , function ( ) {
217241
218242 // since this simply delegates to Compiler.prototype.destroy(),
You can’t perform that action at this time.
0 commit comments