yhtml5-test
Version:
A test framework for front-end projects
13 lines (9 loc) • 320 B
JavaScript
;
import './localStorage';
import './sessionStorage';
import './promise';
// fetch() polyfill for making API calls.
require('whatwg-fetch');
// Object.assign() is commonly used with React.
// It will use the native implementation if it's present and isn't buggy.
Object.assign = require('object-assign');