We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7cdb9d commit 8e1a068Copy full SHA for 8e1a068
apps/language_server/test/server_test.exs
@@ -105,6 +105,16 @@ defmodule ElixirLS.LanguageServer.ServerTest do
105
106
JsonRpc.receive_packet(response(id, [config]))
107
108
+ assert_receive(
109
+ %{
110
+ "method" => "window/logMessage",
111
+ "params" => %{
112
+ "message" => "Received client configuration via workspace/configuration" <> _
113
+ }
114
+ },
115
+ 1000
116
+ )
117
+
118
Server.receive_packet(
119
server,
120
did_change_configuration(nil)
@@ -115,7 +125,7 @@ defmodule ElixirLS.LanguageServer.ServerTest do
125
"id" => id,
126
"method" => "workspace/configuration"
127
},
- 1000
128
+ 3000
129
)
130
121
131
0 commit comments