We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 601a415 commit 0513f87Copy full SHA for 0513f87
examples/addon.node/__test__/whisper.spec.js
@@ -31,8 +31,9 @@ const whisperParamsMock = {
31
describe("Run whisper.node", () => {
32
test("it should receive a non-empty value", async () => {
33
let result = await whisperAsync(whisperParamsMock);
34
+ console.log(result);
35
- expect(result.length).toBeGreaterThan(0);
36
+ expect(result['transcription'].length).toBeGreaterThan(0);
37
}, 10000);
38
});
39
0 commit comments