@@ -358,7 +358,8 @@ async function factory(
358
358
currentLocation : RouteLocationNormalized ,
359
359
propsData : any ,
360
360
resolvedLocation : RouteLocationResolved ,
361
- slotTemplate : string = ''
361
+ slotTemplate : string = '' ,
362
+ component : any = RouterLink
362
363
) {
363
364
const route = createMockedRoute ( currentLocation )
364
365
const router = {
@@ -373,7 +374,7 @@ async function factory(
373
374
}
374
375
router . resolve . mockReturnValueOnce ( resolvedLocation )
375
376
376
- const wrapper = mount ( RouterLink as any , {
377
+ const wrapper = mount ( component , {
377
378
propsData,
378
379
global : {
379
380
provide : {
@@ -899,6 +900,32 @@ describe('RouterLink', () => {
899
900
expect ( wrapper . html ( ) ) . not . toContain ( '</a>' )
900
901
} )
901
902
903
+ // #2375
904
+ it ( 'works with custom directive when custom=true' , async ( ) => {
905
+ const Directive = ( el : HTMLElement ) => el . setAttribute ( 'data-test' , 'x' )
906
+ const AppLink = defineComponent ( {
907
+ template : `
908
+ <router-link custom v-directive>
909
+ <a></a>
910
+ </router-link>
911
+ ` ,
912
+ components : { RouterLink } ,
913
+ directives : { Directive } ,
914
+ name : 'AppLink' ,
915
+ } )
916
+
917
+ const { wrapper } = await factory (
918
+ locations . basic . normalized ,
919
+ { to : locations . basic . string } ,
920
+ locations . basic . normalized ,
921
+ undefined ,
922
+ AppLink
923
+ )
924
+
925
+ expect ( wrapper . element . tagName ) . toBe ( 'A' )
926
+ expect ( wrapper . attributes ( 'data-test' ) ) . toBe ( 'x' )
927
+ } )
928
+
902
929
describe ( 'Extending RouterLink' , ( ) => {
903
930
const AppLink = defineComponent ( {
904
931
template : `
@@ -932,59 +959,31 @@ describe('RouterLink', () => {
932
959
} ,
933
960
} )
934
961
935
- async function factoryCustom (
936
- currentLocation : RouteLocationNormalized ,
937
- propsData : any ,
938
- resolvedLocation : RouteLocationResolved ,
939
- slotTemplate : string = ''
940
- ) {
941
- const route = createMockedRoute ( currentLocation )
942
- const router = {
943
- history : createMemoryHistory ( ) ,
944
- createHref ( to : RouteLocationNormalized ) : string {
945
- return this . history . base + to . fullPath
946
- } ,
947
- options : { } as Partial < RouterOptions > ,
948
- resolve : vi . fn ( ) ,
949
- push : vi . fn ( ) . mockResolvedValue ( resolvedLocation ) ,
950
- }
951
- router . resolve . mockReturnValueOnce ( resolvedLocation )
952
-
953
- const wrapper = await mount ( AppLink as any , {
954
- propsData,
955
- global : {
956
- provide : {
957
- [ routerKey as any ] : router ,
958
- ...route . provides ,
959
- } ,
960
- } ,
961
- slots : { default : slotTemplate } ,
962
- } )
963
-
964
- return { router, wrapper, route }
965
- }
966
-
967
962
it ( 'can extend RouterLink with inactive class' , async ( ) => {
968
- const { wrapper } = await factoryCustom (
963
+ const { wrapper } = await factory (
969
964
locations . basic . normalized ,
970
965
{
971
966
to : locations . basic . string ,
972
967
inactiveClass : 'inactive' ,
973
968
activeClass : 'active' ,
974
969
} ,
975
- locations . foo . normalized
970
+ locations . foo . normalized ,
971
+ undefined ,
972
+ AppLink
976
973
)
977
974
978
975
expect ( wrapper . find ( 'a' ) ! . classes ( ) ) . toEqual ( [ 'inactive' ] )
979
976
} )
980
977
981
978
it ( 'can extend RouterLink with external link' , async ( ) => {
982
- const { wrapper } = await factoryCustom (
979
+ const { wrapper } = await factory (
983
980
locations . basic . normalized ,
984
981
{
985
982
to : 'https://esm.dev' ,
986
983
} ,
987
- locations . foo . normalized
984
+ locations . foo . normalized ,
985
+ undefined ,
986
+ AppLink
988
987
)
989
988
990
989
expect ( wrapper . find ( 'a' ) ! . classes ( ) ) . toHaveLength ( 0 )
0 commit comments