فهرست منبع

Fix test case

afc163 8 سال پیش
والد
کامیت
7532598937
1فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 4 1
      tests/setupTests.js

+ 4 - 1
tests/setupTests.js

@@ -1,5 +1,8 @@
 /* eslint-disable import/first */
-import '../src/polyfill';
+global.requestAnimationFrame =
+  global.requestAnimationFrame || function requestAnimationFrame(callback) {
+    setTimeout(callback, 0);
+  };
 import { jsdom } from 'jsdom';
 import Enzyme from 'enzyme';
 import Adapter from 'enzyme-adapter-react-16';