Skip to content

Commit 8e1a068

Browse files
committed
increase timeout
1 parent c7cdb9d commit 8e1a068

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

apps/language_server/test/server_test.exs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,16 @@ defmodule ElixirLS.LanguageServer.ServerTest do
105105

106106
JsonRpc.receive_packet(response(id, [config]))
107107

108+
assert_receive(
109+
%{
110+
"method" => "window/logMessage",
111+
"params" => %{
112+
"message" => "Received client configuration via workspace/configuration" <> _
113+
}
114+
},
115+
1000
116+
)
117+
108118
Server.receive_packet(
109119
server,
110120
did_change_configuration(nil)
@@ -115,7 +125,7 @@ defmodule ElixirLS.LanguageServer.ServerTest do
115125
"id" => id,
116126
"method" => "workspace/configuration"
117127
},
118-
1000
128+
3000
119129
)
120130

121131
JsonRpc.receive_packet(response(id, [config]))

0 commit comments

Comments
 (0)