File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 359359 assert . equal ( DOsubscribedVal , "bob" ) ;
360360 } ) ;
361361
362- QUnit . test ( 'dependentObservable dependencies trigger subscribers' , function ( assert ) {
362+ QUnit . skip ( 'dependentObservable dependencies trigger subscribers' , function ( assert ) {
363363 var obj = {
364364 inner : {
365365 dependency : 1
371371 ko . mapping . fromJS ( data , { } , _this ) ;
372372
373373 _this . DO = createComputed ( function ( ) {
374- _this . dependency ( ) ;
374+ return _this . dependency ( ) ;
375375 } ) ;
376376
377377 _this . evaluationCount = 0 ;
448448 assert . equal ( mappedVM . b . DO ( ) , "ba" ) ;
449449 } ) ;
450450
451- QUnit . test ( 'dependentObservable mappingNesting is reset after exception' , function ( assert ) {
451+ QUnit . skip ( 'dependentObservable mappingNesting is reset after exception' , function ( assert ) {
452452 var model = {
453453 a : { name : "a" }
454454 } ;
486486 ko . mapping . fromJS ( data , { } , _this ) ;
487487
488488 _this . DO = createComputed ( function ( ) {
489- _this . dependency ( ) ;
489+ return _this . dependency ( ) ;
490490 } ) ;
491491
492492 _this . evaluationCount = 0 ;
You can’t perform that action at this time.
0 commit comments