Skip to content

Commit a49b7a2

Browse files
authored
Fix tests from #6158 to use Jasmine 2 (#7126)
1 parent 752e159 commit a49b7a2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/isomorphic/classic/class/__tests__/ReactClassMixin-test.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,8 @@ describe('ReactClass-mixin', function() {
321321
},
322322
});
323323

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(
326326
'Warning: ReactClass: You\'re attempting to include a mixin that is ' +
327327
'either null or not an object. Check the mixins included by the ' +
328328
'component, as well as any mixins they include themselves. ' +
@@ -341,8 +341,8 @@ describe('ReactClass-mixin', function() {
341341
},
342342
});
343343

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(
346346
'Warning: ReactClass: You\'re attempting to include a mixin that is ' +
347347
'either null or not an object. Check the mixins included by the ' +
348348
'component, as well as any mixins they include themselves. ' +
@@ -365,8 +365,8 @@ describe('ReactClass-mixin', function() {
365365
},
366366
});
367367

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(
370370
'Warning: ReactClass: You\'re attempting to include a mixin that is ' +
371371
'either null or not an object. Check the mixins included by the ' +
372372
'component, as well as any mixins they include themselves. ' +
@@ -389,8 +389,8 @@ describe('ReactClass-mixin', function() {
389389
},
390390
});
391391

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(
394394
'Warning: ReactClass: You\'re attempting to include a mixin that is ' +
395395
'either null or not an object. Check the mixins included by the ' +
396396
'component, as well as any mixins they include themselves. ' +

0 commit comments

Comments
 (0)