UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

12 lines (11 loc) 335 B
import { Sidecar } from "./lib/Sidecar"; import { PM_Node_Sidecar } from "./PM/nodeSidecar"; export class NodeSidecar extends Sidecar { constructor(t) { super(); this.pm = new PM_Node_Sidecar(t); this.pm.start(this.stop).then(() => { this.start(JSON.parse(process.argv[2])); }); } }