File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,9 @@ describe('server', () => {
8888 "documentSymbolProvider": true,
8989 "hoverProvider": true,
9090 "referencesProvider": true,
91+ "renameProvider": {
92+ "prepareProvider": true,
93+ },
9194 "textDocumentSync": 1,
9295 "workspaceSymbolProvider": true,
9396 }
@@ -106,6 +109,8 @@ describe('server', () => {
106109 expect ( connection . onHover ) . toHaveBeenCalledTimes ( 1 )
107110 expect ( connection . onReferences ) . toHaveBeenCalledTimes ( 1 )
108111 expect ( connection . onWorkspaceSymbol ) . toHaveBeenCalledTimes ( 1 )
112+ expect ( connection . onPrepareRename ) . toHaveBeenCalledTimes ( 1 )
113+ expect ( connection . onRenameRequest ) . toHaveBeenCalledTimes ( 1 )
109114 } )
110115
111116 it ( 'allows for defining workspace configuration' , async ( ) => {
You can’t perform that action at this time.
0 commit comments