-import createHistory from '../../src/history/html5.2'
+import createHistory from '../../src/history/html5'
import { createDom } from '../utils'
// TODO: is it really worth testing this implementation on jest or is it
-import createMemoryHistory from '../../src/history/abstract.2'
+import createMemoryHistory from '../../src/history/memory'
import {
START,
HistoryLocationNormalized,
-import { parseQuery } from '../src/history/utils'
+import { parseQuery } from '../src/history/common'
describe('parseQuery', () => {
it('works with leading ?', () => {
parseURL,
stringifyURL,
normalizeLocation,
-} from '../src/history/utils'
+} from '../src/history/common'
describe('parseURL', () => {
it('works with no query no hash', () => {
import { RouterHistory } from './common'
-import createHistory from './html5.2'
+import createHistory from './html5'
export default function createHashHistory(): RouterHistory {
// Make sure this implementation is fine in terms of encoding, specially for IE11
import { Router, RouterOptions } from './router'
import { PluginFunction, VueConstructor } from 'vue'
-import createHistory from './history/html5.2'
-import createMemoryHistory from './history/abstract.2'
+import createHistory from './history/html5'
+import createMemoryHistory from './history/memory'
import View from './components/View'
import Link from './components/Link'