Skip to content

Commit 1320989

Browse files
authored
Merge pull request #3404 from 1c-syntax/feature/disable-get-tests-by-bsl-ls-by-default
Поиск тестов через бсл лс выключен по умолчанию
2 parents adf58a7 + 961fa7d commit 1320989

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/github/_1c_syntax/bsl/languageserver/configuration/codelens/TestRunnerAdapterOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public class TestRunnerAdapterOptions {
6969
/**
7070
* Флаг, указывающий на необходимость получения списка тестов через исполняемый файл тестового фреймворка.
7171
*/
72-
private boolean getTestsByTestRunner = false;
72+
private boolean getTestsByTestRunner = true;
7373
/**
7474
* Аргументы для получения списка тестов.
7575
*/

src/main/resources/com/github/_1c_syntax/bsl/languageserver/configuration/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@
714714
"$id": "#/properties/codeLens/testRunner/getTestsByTestRunner",
715715
"type": "boolean",
716716
"title": "Use testrunner to get test method names. By default, use internal parser to find methods annotated with &Тест.",
717-
"default": false
717+
"default": true
718718
},
719719
"getTestsArguments": {
720720
"$id": "#/properties/codeLens/testRunner/getTestsArguments",

0 commit comments

Comments
 (0)