8 lines
246 B
JavaScript
8 lines
246 B
JavaScript
const createHistory = require('history').createBrowserHistory
|
|
const createMemoryHistory = require('history').createMemoryHistory
|
|
|
|
const history =
|
|
process.env.NODE_ENV === 'test' ? createMemoryHistory() : createHistory()
|
|
|
|
export default history
|