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 e555b6d commit 154b906Copy full SHA for 154b906
src/test/java/com/github/_1c_syntax/bsl/languageserver/BSLLSPLauncherTest.java
@@ -246,13 +246,14 @@ void testWithoutCommandWithConfig() {
246
// проверим, что перешли в команду lsp
247
248
// given
249
- String[] args = "-c .".split(" ");
+ String[] args = "-c src/test/resources/.bsl-language-server.json".split(" ");
250
251
// when
252
BSLLSPLauncher.main(args);
253
254
// then
255
- assertThat(outContent.toString()).contains("LanguageServerStartCommand");
+ // main-method should run without exceptions
256
+ assertThat(outContent.toString()).isEmpty();
257
assertThat(errContent.toString()).isEmpty();
258
}
259
0 commit comments