test: tighten deepgram transcription config assertion

This commit is contained in:
Shakker
2026-05-11 07:20:47 +01:00
parent 12a51163a4
commit f1c5fc69d2

View File

@@ -29,14 +29,15 @@ describe("buildDeepgramRealtimeTranscriptionProvider", () => {
},
});
expect(resolved).toMatchObject({
expect(resolved).toEqual({
apiKey: "dg-key",
baseUrl: undefined,
model: "nova-3",
encoding: "mulaw",
language: "en-US",
sampleRate: 8000,
encoding: "mulaw",
interimResults: true,
endpointingMs: 500,
language: "en-US",
});
});