vega-frontend-monorepo/libs/wallet/__mocks__/zustand.ts

21 lines
704 B
TypeScript
Raw Normal View History

import type { StateCreator } from 'zustand';
const { create: actualCreate } = jest.requireActual('zustand'); // if using jest
// a variable to hold reset functions for all stores declared in the app
const storeResetFns = new Set<() => void>();
// when creating a store, we get its initial state, create a reset function and add it in the set
export const create =
() =>
<S>(createState: StateCreator<S>) => {
const store = actualCreate(createState);
const initialState = store.getState();
storeResetFns.add(() => store.setState(initialState, true));
return store;
};
// Reset all stores after each test run
beforeEach(() => {
storeResetFns.forEach((resetFn) => resetFn());
});