UNPKG

easy-peasy

Version:
15 lines (12 loc) 277 B
import { createStore } from '../index'; test('deprecated action API does nothing', () => { // act const store = createStore({ count: 1, increment: state => { state.count += 1; }, }); // assert expect(store.dispatch.increment).toBeUndefined(); });