Skip to content

Commit 42a88db

Browse files
committed
do not return error if unable to get tests
1 parent b41ade7 commit 42a88db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/language_server/lib/language_server/providers/execute_command/get_ex_unit_tests_in_file.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defmodule ElixirLS.LanguageServer.Providers.ExecuteCommand.GetExUnitTestsInFile
1111
{:ok, tests}
1212

1313
{:error, reason} ->
14-
{:error, :server_error, "Cannot get tests in file: #{inspect(reason)}", true}
14+
{:ok, []}
1515
end
1616
end
1717
end

0 commit comments

Comments
 (0)