File tree 2 files changed +22
-0
lines changed
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -152,10 +152,29 @@ describe('Memory history', () => {
152
152
const spy = jest . fn ( )
153
153
history . listen ( spy )
154
154
history . destroy ( )
155
+ history . push ( '/2' )
155
156
history . go ( - 1 )
156
157
expect ( spy ) . not . toHaveBeenCalled ( )
157
158
} )
158
159
160
+ it ( 'can be reused after destroy' , ( ) => {
161
+ const history = createMemoryHistory ( )
162
+ history . push ( '/1' )
163
+ history . push ( '/2' )
164
+ history . push ( '/3' )
165
+ history . go ( - 1 )
166
+
167
+ expect ( history . location ) . toBe ( '/2' )
168
+ history . destroy ( )
169
+ history . go ( - 1 )
170
+ expect ( history . location ) . toBe ( START )
171
+ history . push ( '/4' )
172
+ history . push ( '/5' )
173
+ expect ( history . location ) . toBe ( '/5' )
174
+ history . go ( - 1 )
175
+ expect ( history . location ) . toBe ( '/4' )
176
+ } )
177
+
159
178
it ( 'can avoid listeners with back and forward' , ( ) => {
160
179
const history = createMemoryHistory ( )
161
180
const spy = jest . fn ( )
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ export function createMemoryHistory(base: string = ''): RouterHistory {
52
52
const routerHistory : RouterHistory = {
53
53
// rewritten by Object.defineProperty
54
54
location : START ,
55
+ // TODO: should be kept in queue
55
56
state : { } ,
56
57
base,
57
58
createHref : createHref . bind ( null , base ) ,
@@ -75,6 +76,8 @@ export function createMemoryHistory(base: string = ''): RouterHistory {
75
76
} ,
76
77
destroy ( ) {
77
78
listeners = [ ]
79
+ queue = [ START ]
80
+ position = 0
78
81
} ,
79
82
80
83
go ( delta , shouldTrigger = true ) {
You can’t perform that action at this time.
0 commit comments