@@ -321,8 +321,8 @@ describe('ReactClass-mixin', function() {
321
321
} ,
322
322
} ) ;
323
323
324
- expect ( console . error . argsForCall . length ) . toBe ( 1 ) ;
325
- expect ( console . error . argsForCall [ 0 ] [ 0 ] ) . toBe (
324
+ expect ( console . error . calls . count ( ) ) . toBe ( 1 ) ;
325
+ expect ( console . error . calls . argsFor ( 0 ) [ 0 ] ) . toBe (
326
326
'Warning: ReactClass: You\'re attempting to include a mixin that is ' +
327
327
'either null or not an object. Check the mixins included by the ' +
328
328
'component, as well as any mixins they include themselves. ' +
@@ -341,8 +341,8 @@ describe('ReactClass-mixin', function() {
341
341
} ,
342
342
} ) ;
343
343
344
- expect ( console . error . argsForCall . length ) . toBe ( 1 ) ;
345
- expect ( console . error . argsForCall [ 0 ] [ 0 ] ) . toBe (
344
+ expect ( console . error . calls . count ( ) ) . toBe ( 1 ) ;
345
+ expect ( console . error . calls . argsFor ( 0 ) [ 0 ] ) . toBe (
346
346
'Warning: ReactClass: You\'re attempting to include a mixin that is ' +
347
347
'either null or not an object. Check the mixins included by the ' +
348
348
'component, as well as any mixins they include themselves. ' +
@@ -365,8 +365,8 @@ describe('ReactClass-mixin', function() {
365
365
} ,
366
366
} ) ;
367
367
368
- expect ( console . error . argsForCall . length ) . toBe ( 1 ) ;
369
- expect ( console . error . argsForCall [ 0 ] [ 0 ] ) . toBe (
368
+ expect ( console . error . calls . count ( ) ) . toBe ( 1 ) ;
369
+ expect ( console . error . calls . argsFor ( 0 ) [ 0 ] ) . toBe (
370
370
'Warning: ReactClass: You\'re attempting to include a mixin that is ' +
371
371
'either null or not an object. Check the mixins included by the ' +
372
372
'component, as well as any mixins they include themselves. ' +
@@ -389,8 +389,8 @@ describe('ReactClass-mixin', function() {
389
389
} ,
390
390
} ) ;
391
391
392
- expect ( console . error . argsForCall . length ) . toBe ( 1 ) ;
393
- expect ( console . error . argsForCall [ 0 ] [ 0 ] ) . toBe (
392
+ expect ( console . error . calls . count ( ) ) . toBe ( 1 ) ;
393
+ expect ( console . error . calls . argsFor ( 0 ) [ 0 ] ) . toBe (
394
394
'Warning: ReactClass: You\'re attempting to include a mixin that is ' +
395
395
'either null or not an object. Check the mixins included by the ' +
396
396
'component, as well as any mixins they include themselves. ' +
0 commit comments