16 lines
633 B
JavaScript
16 lines
633 B
JavaScript
'use strict';
|
|
|
|
/* if (typeof Promise === 'undefined') {
|
|
// Rejection tracking prevents a common issue where Inferno gets into an
|
|
// inconsistent state due to an error, but it gets swallowed by a Promise,
|
|
// and the user has no idea what causes Inferno's erratic future behavior.
|
|
require('promise/lib/rejection-tracking').enable();
|
|
window.Promise = require('promise/lib/es6-extensions.js');
|
|
} */
|
|
|
|
// In tests, polyfill requestAnimationFrame since jsdom doesn't provide it yet.
|
|
// We don't polyfill it in the browser--this is user's responsibility.
|
|
if (process.env.NODE_ENV === 'test') {
|
|
require('raf').polyfill(global);
|
|
}
|