mirror of
https://github.com/kbwo/testing-language-server.git
synced 2025-08-03 15:18:16 +00:00
chore: update error message
This commit is contained in:
parent
aa4883e038
commit
c511c02107
1 changed files with 1 additions and 2 deletions
|
@ -317,8 +317,7 @@ impl TestingLS {
|
|||
.map_err(|err| LSError::Adapter(err.to_string()))?;
|
||||
let Output { stdout, stderr, .. } = output;
|
||||
if !stderr.is_empty() {
|
||||
let message =
|
||||
"Cannot run test command: \n".to_string() + &String::from_utf8(stderr).unwrap();
|
||||
let message = "Error occurred when running test via adapter.\nCheck adapter log or run tests manually".to_string();
|
||||
let message_type = MessageType::ERROR;
|
||||
let params: ShowMessageParams = ShowMessageParams {
|
||||
typ: message_type,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue