}
@NotNull
private SMTRunnerConsoleView createSMTRunnerConsoleView(@Nullable JstdServer ideServer) {
JstdRunConfiguration runConfiguration = (JstdRunConfiguration) myEnvironment.getRunProfile();
TestConsoleProperties testConsoleProperties = new SMTRunnerConsoleProperties(
runConfiguration,
JSTD_FRAMEWORK_NAME,
myEnvironment.getExecutor(),
false
);
testConsoleProperties.setUsePredefinedMessageFilter(false);
testConsoleProperties.setIfUndefined(TestConsoleProperties.HIDE_PASSED_TESTS, false);
testConsoleProperties.setIfUndefined(TestConsoleProperties.HIDE_IGNORED_TEST, true);
testConsoleProperties.setIfUndefined(TestConsoleProperties.SCROLL_TO_SOURCE, true);
JstdConsoleView consoleView = new JstdConsoleView(testConsoleProperties,
myEnvironment,
SMTestRunnerConnectionUtil.getSplitterPropertyName(JSTD_FRAMEWORK_NAME),
ideServer);