testeranto
Version:
the AI powered BDD test framework for typescript projects
15 lines (12 loc) • 343 B
text/typescript
import { Sidecar } from "./lib/Sidecar";
import { PM_Node_Sidecar } from "./PM/nodeSidecar";
export abstract class NodeSidecar extends Sidecar {
pm: PM_Node_Sidecar;
constructor(t) {
super();
this.pm = new PM_Node_Sidecar(t);
this.pm.start(this.stop).then(() => {
this.start(JSON.parse(process.argv[2]));
});
}
}