@@ -987,7 +987,7 @@ Hint: It might not be working because maybe you're not up to date with the Meili
987987 { host : `${ BAD_HOST } /api` , trailing : false } ,
988988 { host : `${ BAD_HOST } /trailing/` , trailing : true } ,
989989 ] ) ( "Tests on url construction" , ( { host, trailing } ) => {
990- test ( `Test getDocument route` , async ( ) => {
990+ test ( `getDocument route` , async ( ) => {
991991 const route = `indexes/${ indexPk . uid } /documents/1` ;
992992 const client = new MeiliSearch ( { host } ) ;
993993 const strippedHost = trailing ? host . slice ( 0 , - 1 ) : host ;
@@ -999,7 +999,7 @@ Hint: It might not be working because maybe you're not up to date with the Meili
999999 ) ;
10001000 } ) ;
10011001
1002- test ( `Test getDocuments route` , async ( ) => {
1002+ test ( `getDocuments route` , async ( ) => {
10031003 const route = `indexes/${ indexPk . uid } /documents` ;
10041004 const client = new MeiliSearch ( { host } ) ;
10051005 const strippedHost = trailing ? host . slice ( 0 , - 1 ) : host ;
@@ -1011,7 +1011,7 @@ Hint: It might not be working because maybe you're not up to date with the Meili
10111011 ) ;
10121012 } ) ;
10131013
1014- test ( `Test addDocuments route` , async ( ) => {
1014+ test ( `addDocuments route` , async ( ) => {
10151015 const route = `indexes/${ indexPk . uid } /documents` ;
10161016 const client = new MeiliSearch ( { host } ) ;
10171017 const strippedHost = trailing ? host . slice ( 0 , - 1 ) : host ;
@@ -1023,7 +1023,7 @@ Hint: It might not be working because maybe you're not up to date with the Meili
10231023 ) ;
10241024 } ) ;
10251025
1026- test ( `Test updateDocuments route` , async ( ) => {
1026+ test ( `updateDocuments route` , async ( ) => {
10271027 const route = `indexes/${ indexPk . uid } /documents` ;
10281028 const client = new MeiliSearch ( { host } ) ;
10291029 const strippedHost = trailing ? host . slice ( 0 , - 1 ) : host ;
@@ -1035,7 +1035,7 @@ Hint: It might not be working because maybe you're not up to date with the Meili
10351035 ) ;
10361036 } ) ;
10371037
1038- test ( `Test deleteDocument route` , async ( ) => {
1038+ test ( `deleteDocument route` , async ( ) => {
10391039 const route = `indexes/${ indexPk . uid } /documents/1` ;
10401040 const client = new MeiliSearch ( { host } ) ;
10411041 const strippedHost = trailing ? host . slice ( 0 , - 1 ) : host ;
@@ -1047,7 +1047,7 @@ Hint: It might not be working because maybe you're not up to date with the Meili
10471047 ) ;
10481048 } ) ;
10491049
1050- test ( `Test deleteDocuments route` , async ( ) => {
1050+ test ( `deleteDocuments route` , async ( ) => {
10511051 const route = `indexes/${ indexPk . uid } /documents/delete-batch` ;
10521052 const client = new MeiliSearch ( { host } ) ;
10531053 const strippedHost = trailing ? host . slice ( 0 , - 1 ) : host ;
@@ -1059,7 +1059,7 @@ Hint: It might not be working because maybe you're not up to date with the Meili
10591059 ) ;
10601060 } ) ;
10611061
1062- test ( `Test deleteAllDocuments route` , async ( ) => {
1062+ test ( `deleteAllDocuments route` , async ( ) => {
10631063 const route = `indexes/${ indexPk . uid } /documents` ;
10641064 const client = new MeiliSearch ( { host } ) ;
10651065 const strippedHost = trailing ? host . slice ( 0 , - 1 ) : host ;
@@ -1071,7 +1071,7 @@ Hint: It might not be working because maybe you're not up to date with the Meili
10711071 ) ;
10721072 } ) ;
10731073
1074- test ( `Test updateDocumentsByFunction route` , async ( ) => {
1074+ test ( `updateDocumentsByFunction route` , async ( ) => {
10751075 const route = `indexes/${ indexPk . uid } /documents/edit` ;
10761076 const client = new MeiliSearch ( { host } ) ;
10771077 const strippedHost = trailing ? host . slice ( 0 , - 1 ) : host ;
0 commit comments