From 06f11194ded918883a9a61f3d53476435fd81c48 Mon Sep 17 00:00:00 2001 From: gagik Date: Fri, 6 Dec 2024 10:34:45 +0100 Subject: [PATCH] track first test --- src/test/suite/participant/participant.test.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/test/suite/participant/participant.test.ts b/src/test/suite/participant/participant.test.ts index a8010e7a7..bc8932d16 100644 --- a/src/test/suite/participant/participant.test.ts +++ b/src/test/suite/participant/participant.test.ts @@ -1660,8 +1660,12 @@ Schema: expect(fetchStub).to.have.been.called; expect(sendRequestStub).to.have.not.been.called; + expect(telemetryTrackStub.firstCall).to.equal( + 'Participant Prompt Submitted' + ); + assertResponseTelemetry('docs/chatbot', { - callIndex: 0, + callIndex: 1, }); });