import { expect, tap } from '@pushrocks/tapbundle'; import * as smartstate from '../ts/index'; type TMyStateParts = 'testStatePart'; interface TStatePartPayload { currentFavorites: string[]; deep: { hi: number; }; } let testState: smartstate.Smartstate; let testStatePart: smartstate.StatePart; tap.test('should create a new SmartState', async () => { testState = new smartstate.Smartstate(); expect(testState).to.be.instanceOf(smartstate.Smartstate); }); tap.test('should create a new StatePart', async () => { testStatePart = testState.getStatePart('testStatePart', { currentFavorites: [], deep: { hi: 2 } }); expect(testStatePart).to.be.instanceOf(smartstate.StatePart); console.log(testStatePart); }); tap.test('should select something', async () => { testStatePart .select(state => state.deep.hi) .subscribe(substate => { expect(substate).to.equal(2); }); }); tap.test('should dispatch a state action', async () => { const addFavourite = testStatePart.createAction(async (statePart, payload) => { const currentState = statePart.getState(); currentState.currentFavorites.push(payload); return currentState; }); await testStatePart.dispatchAction(addFavourite, 'my favourite things'); expect(testStatePart.getState().currentFavorites).to.include('my favourite things'); }); tap.start();