@ofm/history
v1.0.2
Published
wapper history for react-route-v4
Downloads
7
Readme
ajax
describe('test resetHistory', () => {
test('resetHistory', async () => {
const location = { pathname: '/abc' };
expect(history.createHref(location)).toEqual('/abc');
resetHistory({
basename: '/api',
});
expect(history.createHref(location)).toEqual('/api/abc');
});
});