insomnia/app/__jest__/setup.js
Gregory Schier 09c219fb6d More Plugin Hooks (#352)
* Playing around with pre-request hooks

* Added response hooks

* More flow types

* Flow types on wrapper.js

* Flow types on plugin folder

* Basic tests for plugin hooks

* Make DB initilize for all tests no matter what

* Touch
2017-07-19 18:55:40 -07:00

23 lines
414 B
JavaScript

import 'whatwg-fetch';
import beforeEach from './before-each';
const localStorageMock = (function () {
let store = {};
return {
getItem (key) {
return store[key];
},
setItem (key, value) {
store[key] = value.toString();
},
clear () {
store = {};
}
};
})();
global.localStorage = localStorageMock;
global.require = require;
global.insomniaBeforeEach = beforeEach;