initial commit

This commit is contained in:
Joshua Seigler 2022-11-16 14:26:08 -05:00
commit 9a0b1c1254
No known key found for this signature in database
28 changed files with 42055 additions and 0 deletions

View file

@ -0,0 +1,21 @@
// Mock Browser API's which are not supported by JSDOM, e.g. ServiceWorker, LocalStorage
/**
* An example how to mock localStorage is given below 👇
*/
/*
// Mocks localStorage
const localStorageMock = (function() {
let store = {};
return {
getItem: (key) => store[key] || null,
setItem: (key, value) => store[key] = value.toString(),
clear: () => store = {}
};
})();
Object.defineProperty(window, 'localStorage', {
value: localStorageMock
}); */