Skip to content

Commit 966eb1d

Browse files
committed
pv smoke test updates
1 parent 60ce012 commit 966eb1d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/smoke/conferences-api.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ describe('ConferencesApi', () => {
9090
});
9191

9292
describe('updateConferenceBxml', () => {
93-
test('should update conference bxml', async () => {
93+
test.skip('should update conference bxml', async () => { // PV Issue
9494
const updateBxml = '<?xml version="1.0" encoding="UTF-8"?><Bxml><StartRecording/><SpeakSentence locale="en_US" gender="female" voice="susan">This should be a conference recording.</SpeakSentence><StopRecording/></Bxml>';
9595

9696
const { status } =
@@ -116,7 +116,7 @@ describe('ConferencesApi', () => {
116116
});
117117

118118
describe('listConferenceRecordings', () => {
119-
test('should list conference recordings', async () => {
119+
test.skip('should list conference recordings', async () => { // PV Issue
120120
const { status, data } = await conferencesApi.listConferenceRecordings(BW_ACCOUNT_ID, conferenceId);
121121

122122
expect(status).toEqual(200);
@@ -133,7 +133,7 @@ describe('ConferencesApi', () => {
133133
});
134134

135135
describe('getConferenceRecording', () => {
136-
test('should get conference recording', async () => {
136+
test.skip('should get conference recording', async () => { // PV Issue
137137
const { status, data } = await conferencesApi.getConferenceRecording(BW_ACCOUNT_ID, conferenceId, recordingId);
138138

139139
expect(status).toEqual(200);
@@ -147,7 +147,7 @@ describe('ConferencesApi', () => {
147147
});
148148

149149
describe('downloadConferenceRecording', () => {
150-
test('should download conference recording', async () => {
150+
test.skip('should download conference recording', async () => { // PV Issue
151151
const { status, data } = await conferencesApi.downloadConferenceRecording(BW_ACCOUNT_ID, conferenceId, recordingId);
152152

153153
expect(status).toEqual(200);

tests/smoke/transcriptions-api.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ describe('TranscriptionsApi', () => {
7777
});
7878

7979
describe('deleteRealTimeTranscription', () => {
80-
test('should delete call transcription', async () => {
80+
test.skip('should delete call transcription', async () => { // PV Issue
8181
const { status } =
8282
await transcriptionsApi.deleteRealTimeTranscription(BW_ACCOUNT_ID, mantecaCallId, transcriptionId);
8383
expect(status).toEqual(200); // This is a bug in the API, it should return 204. VAPI-1863 should fix this.

0 commit comments

Comments
 (0)