Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
fix listing errors, prepare for 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cellog committed Mar 23, 2017
1 parent 0b779c9 commit 9157159
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-redux-saga-router",
"version": "0.6.0",
"version": "0.6.1",
"description": "elegant powerful routing based on the simplicity of storing url as state",
"main": "lib/index.js",
"directories": {
Expand Down
1 change: 0 additions & 1 deletion src/RouteManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import RouteParser from 'route-parser'
import { createPath } from 'history'
import { put, take, select, call } from 'redux-saga/effects'

import { getRoutes } from './'
import * as types from './types'
import * as actions from './actions'
import * as selectors from './selectors'
Expand Down
2 changes: 1 addition & 1 deletion test/Link.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ describe('react-redux-saga-router Link', () => {
routing: {
routes: {}
}
})).eqls({ '@@__routes': {}})
})).eqls({ '@@__routes': {} })
expect(spy.args[0]).eqls([Link])
})
it('dispatches actions when initialized', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/Route.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ describe('react-redux-saga-router Route', () => {
paramsFromState: fake,
stateFromParams: fake,
updateState: {} })])
})
})
it('passes url down to children', () => {
fake() // for coverage
const R = () => <Routes>
Expand Down
1 change: 0 additions & 1 deletion test/RouteManager.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import RouteParser from 'route-parser'
import createHistory from 'history/createMemoryHistory'
import { put, take, select, call } from 'redux-saga/effects'

import { makeRoute } from '../src'
import RouteManager, { fake } from '../src/RouteManager'
import * as actions from '../src/actions'
import * as types from '../src/types'
Expand Down
2 changes: 1 addition & 1 deletion test/Routes.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('react-redux-saga-router Routes', () => {
])
})
it('passes in routes from state', () => {
const Thing = props => <div></div>
const Thing = () => <div />
const R = () => <ConnectedRoutes>
<Thing />
</ConnectedRoutes>
Expand Down

0 comments on commit 9157159

Please sign in to comment.