Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
this.executableJSONEmitter = {
subscribeCallback: null,
closeCallback: null,
next: (value: any) => {
this.executableJSONEmitter.subscribeCallback(value);
},
close: (callback: any) => {
this.executableJSONEmitter.closeCallback = callback;
},
subscribe: (callback: any) => {
this.executableJSONEmitter.subscribeCallback = callback;
}
};
this.rootPath = rootPath;
this.pathToJest = pathToJest;
this.reconciler = new TestReconciler();
}
constructor(verbose = false) {
this.reconciler = new TestReconciler()
this.resetCache()
this.verbose = verbose
}
constructor() {
this.reconciler = new TestReconciler()
this.resetCache()
}