Rob Lingstuyl

Results 5 issues of Rob Lingstuyl

Thank you so much for this, it saved my day... I still don't understand how all this stuff works but I'm hopeful... I've published my module `moment-from-valueof` and I've been...

This message is showing up every ~100ms and flooding logcat, I can only imagine it's causing and issue w/ performance but in any case it's an error that is annoying...

enhancement

I have the below two tests ```import {expectSaga} from 'redux-saga-test-plan'; import {put, select, takeEvery} from 'redux-saga/effects'; import {combineReducers} from 'redux'; export default class SessionReducer { public static readonly _initialState: any...

I have this test ``` expectSaga(sessionHandoffHandler) //@ts-ignore .withReducer(rootReducer) .dispatch(handoffAction) .put({type: Actions.SESSION_STARTED}) .run() .then((result: {storeState: RootState}) => { // console.log('************', result); let session = sessionState(result.storeState); expect(session.status).toEqual(SessionStatusEnum.HandingOff); expect(session.sensors.length).toEqual(4); expect(session.currentScreen).toEqual('HandoffScreen'); }) ``` I...

I had two calls in my app to BackgroundTimer.setInterval. One at 200 ms and the other at 10s. The one listed at 10s would run 10 times every time it...