function middleware2(action: Action): Stream<Action> {
      expect(action).toEqual({ type: 'Inc' })
      return xs.of(action)
    }