MakingChatbots/ivr-tester

Instance of IvrTester can only run a single suite of scenarios

Opened this issue · 1 comments

Hi,

Thanks for your library. It is very helpful for us. Having one clarification regarding the below code. Here, you've mentioned that 'Instance of IvrTester can only run a single suite of scenarios'.

  • Can't we make a parallel requests using your library.
  • What will happen, if we remove that particular code and try that.

Kindly advice. thanks.

public async run(
testSubject: TestSubject,
scenario: Scenario[] | Scenario
): Promise {
if (this.running) {
throw new Error(
"Instance of IvrTester can only run a single suite of scenarios"
);
}
this.running = true;

Hi @ganeshan102 - how did you get this to work? Could you please provide a simple tutorial.
I'm still trying to figure out..