@@ -52,4 +52,47 @@ describe('onBeforeRouteUpdate', () => {
52
52
await router . push ( '/foo?q' )
53
53
expect ( spy ) . toHaveBeenCalledTimes ( 1 )
54
54
} )
55
+
56
+ it ( 'removes update guards when leaving' , async ( ) => {
57
+ expect . assertions ( 3 )
58
+ const spy = jest
59
+ . fn ( )
60
+ . mockImplementation ( function ( this : any , to , from , next ) {
61
+ expect ( typeof this . counter ) . toBe ( 'number' )
62
+ next ( )
63
+ } )
64
+ const WithLeave = defineComponent ( {
65
+ template : `text` ,
66
+ // we use data to check if the context is the right one because saving `this` in a variable logs a few warnings
67
+ data : ( ) => ( { counter : 0 } ) ,
68
+ setup ( ) {
69
+ onBeforeRouteUpdate ( spy )
70
+ } ,
71
+ } )
72
+
73
+ const router = createRouter ( {
74
+ history : createMemoryHistory ( ) ,
75
+ routes : [
76
+ { path : '/' , component } ,
77
+ { path : '/foo' , component : WithLeave as any } ,
78
+ ] ,
79
+ } )
80
+ const app = createApp ( {
81
+ template : `
82
+ <router-view />
83
+ ` ,
84
+ } )
85
+ app . use ( router )
86
+ const rootEl = document . createElement ( 'div' )
87
+ document . body . appendChild ( rootEl )
88
+ app . mount ( rootEl )
89
+
90
+ await router . isReady ( )
91
+ await router . push ( '/foo' )
92
+ await router . push ( '/foo?q' )
93
+ await router . push ( '/' )
94
+ await router . push ( '/foo' )
95
+ await router . push ( '/foo?q' )
96
+ expect ( spy ) . toHaveBeenCalledTimes ( 2 )
97
+ } )
55
98
} )
0 commit comments