UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

15 lines (13 loc) 423 B
/* eslint-disable @typescript-eslint/no-unused-vars */ import { ITTestResourceConfiguration } from "./lib"; import { Sidecar } from "./lib/Sidecar"; import { PM_Web_Sidecar } from "./PM/webSidecar"; export class WebSideCar extends Sidecar { start(t: ITTestResourceConfiguration) { throw new Error("Method not implemented."); } stop() { throw new Error("Method not implemented."); } pm: PM_Web_Sidecar; }