StoryBook meets redux
Develop and test components in isolation is great, I wrote about that in a previous post, but sometimes we rely on other software to develop our own. That’s the case with most of the…
Develop and test components in isolation is great, I wrote about that in a previous post, but sometimes we rely on other software to develop our own. That’s the case with most of the…
A failure story For the past two months, Pepe and I were working on a redesign project for a new client, the goal of the project is to pay some of the technical debt this…
Redux has some great ideas and it's still pretty simple to grasp (maybe one of the reasons why it's so widely accepted), nevertheless, I sometimes forget how to do simple stuff. Last month a colleague…
Once you add redux simple router (or redux router) to your project you have two places in your state that need to be kept in sync. import { combineReducers } from 'redux' import { routeReducer } from 'redux-simple-router' import…
How to test redux actions without following the manual using tap, tape, and sinon…