mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-21 09:38:01 +02:00
19 lines
511 B
TypeScript
19 lines
511 B
TypeScript
import reducer from '@joplin/lib/reducer';
|
|
import { createStore } from 'redux';
|
|
import appDefaultState from '../appDefaultState';
|
|
import Setting from '@joplin/lib/models/Setting';
|
|
import { AppState } from '../types';
|
|
|
|
const testReducer = (state: AppState|undefined, action: unknown) => {
|
|
state ??= {
|
|
...appDefaultState,
|
|
settings: Setting.toPlainObject(),
|
|
};
|
|
return reducer(state, action);
|
|
};
|
|
|
|
const createMockReduxStore = () => {
|
|
return createStore(testReducer);
|
|
};
|
|
export default createMockReduxStore;
|