Skip to content

Commit 5ae5f34

Browse files
feat: move search progress bar listener to core (#156)
The search progress bar listener was located in SynTest-JavaScript. However, there was nothing specific about the listener to JavaScript. That is why it is now moved to SynTest-Core
1 parent a50e6b6 commit 5ae5f34

File tree

2 files changed

+0
-103
lines changed

2 files changed

+0
-103
lines changed

tools/javascript/lib/JavaScriptModule.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import { MetricManager } from "@syntest/metric";
2626
import { StorageManager } from "@syntest/storage";
2727
import { RandomSamplerPlugin } from "./plugins/sampler/RandomSamplerPlugin";
2828
import { TreeCrossoverPlugin } from "./plugins/crossover/TreeCrossoverPlugin";
29-
import { SearchProgressBarListener } from "./plugins/listeners/SearchProgressBarListener";
3029

3130
export default class JavaScriptModule extends TestingToolModule {
3231
constructor() {
@@ -77,10 +76,6 @@ export default class JavaScriptModule extends TestingToolModule {
7776

7877
moduleManager.registerPlugin(this, new TreeCrossoverPlugin());
7978
moduleManager.registerPlugin(this, new RandomSamplerPlugin());
80-
moduleManager.registerPlugin(
81-
this,
82-
new SearchProgressBarListener(userInterface)
83-
);
8479

8580
super.register(
8681
moduleManager,

tools/javascript/lib/plugins/listeners/SearchProgressBarListener.ts

Lines changed: 0 additions & 98 deletions
This file was deleted.

0 commit comments

Comments
 (0)