use of com.intellij.javascript.karma.tree.KarmaTestProxyFilterProvider in project intellij-plugins by JetBrains.
the class KarmaExecutionSession method createSMTRunnerConsoleView.
@NotNull
private SMTRunnerConsoleView createSMTRunnerConsoleView() {
KarmaTestProxyFilterProvider filterProvider = new KarmaTestProxyFilterProvider(myProject, myKarmaServer);
TestConsoleProperties testConsoleProperties = new KarmaConsoleProperties(myRunConfiguration, myExecutor, filterProvider);
KarmaConsoleView consoleView = new KarmaConsoleView(testConsoleProperties, myKarmaServer, this);
Disposer.register(myProject, consoleView);
SMTestRunnerConnectionUtil.initConsoleView(consoleView, FRAMEWORK_NAME);
return consoleView;
}
Aggregations