File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
apps/language_server/test/support Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ defmodule ElixirLS.LanguageServer.Test.ServerTestHelpers do
4
4
alias ElixirLS.LanguageServer.Server
5
5
alias ElixirLS.LanguageServer.JsonRpc
6
6
alias ElixirLS.LanguageServer.Providers.WorkspaceSymbols
7
+ alias ElixirLS.LanguageServer.Providers.Formatting
7
8
alias ElixirLS.Utils.PacketCapture
8
9
9
10
def start_server do
@@ -15,6 +16,9 @@ defmodule ElixirLS.LanguageServer.Test.ServerTestHelpers do
15
16
json_rpc = start_supervised! ( { JsonRpc , name: JsonRpc } )
16
17
Process . group_leader ( json_rpc , packet_capture )
17
18
19
+ formatting = start_supervised! ( { Formatting , [ ] } )
20
+ Process . group_leader ( formatting , packet_capture )
21
+
18
22
workspace_symbols = start_supervised! ( { WorkspaceSymbols , [ ] } )
19
23
Process . group_leader ( workspace_symbols , packet_capture )
20
24
You can’t perform that action at this time.
0 commit comments