mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-05 01:19:07 +01:00
* Reuse global scene between tests Co-authored-by: PigeonBar <56974298+PigeonBar@users.noreply.github.com> * Add missing each method to mockContainer * Fix select-modifier-phase test * Sanitize overrides before tests Co-authored-by: PigeonBar <56974298+PigeonBar@users.noreply.github.com> * Sanitize overrides before tests Co-authored-by: PigeonBar <56974298+PigeonBar@users.noreply.github.com> * [WIP] fix things * Fix tests not working with --no-isolate * Update npm tests to use no isolate * Update test-shard-template * Update package.json Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --------- Co-authored-by: PigeonBar <56974298+PigeonBar@users.noreply.github.com> Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
26 lines
420 B
TypeScript
26 lines
420 B
TypeScript
export const mockLocalStorage = () => {
|
|
let store = {} as Storage;
|
|
|
|
return {
|
|
getItem(key: string) {
|
|
return store[key];
|
|
},
|
|
|
|
setItem(key: string, value: string) {
|
|
store[key] = value;
|
|
},
|
|
|
|
hasOwnProperty(key: string) {
|
|
return store.hasOwnProperty(key);
|
|
},
|
|
|
|
removeItem(key: string) {
|
|
delete store[key];
|
|
},
|
|
|
|
clear() {
|
|
store = {} as Storage;
|
|
},
|
|
};
|
|
};
|