Skip to content

Commit

Permalink
Update test to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
acdlite committed May 10, 2019
1 parent 5b6eb55 commit 39ef609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/__tests__/ReactDOMFrameScheduling-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('ReactDOMFrameScheduling', () => {
};
spyOnDevAndProd(console, 'error');
require('react-dom');
expect(console.error.calls.count()).toEqual(1);
expect(console.error.calls.count()).toEqual(2);
expect(console.error.calls.argsFor(0)[0]).toMatch(
"This browser doesn't support requestAnimationFrame.",
);
Expand Down

1 comment on commit 39ef609

@gaearon
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Huh what was that about

Please sign in to comment.