Skip to content

Commit 5a3d22f

Browse files
committed
fix test
1 parent 6a93b43 commit 5a3d22f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/empathicVoice/chat.test.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { HumeClient, ffplay } from "../../src/";
1+
import { HumeClient } from "../../src/";
22

33
describe("Empathic Voice Interface", () => {
44
it.skip("Chat", async () => {
@@ -10,8 +10,7 @@ describe("Empathic Voice Interface", () => {
1010
const socket = await hume.empathicVoice.chat.connect({
1111
async onMessage(message): Promise<void> {
1212
if (message.type === "audio_output") {
13-
const decoded = Buffer.from(message.data, "base64");
14-
await ffplay(decoded);
13+
Buffer.from(message.data, "base64");
1514
}
1615
}
1716
});

0 commit comments

Comments
 (0)