From be8053db4f1c8e62d218e6ac38a8f6496180715c Mon Sep 17 00:00:00 2001 From: Quan HL Date: Mon, 26 Feb 2024 13:54:34 +0700 Subject: [PATCH] wip --- test/synth.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/synth.js b/test/synth.js index 7bd2b18..4988879 100644 --- a/test/synth.js +++ b/test/synth.js @@ -188,6 +188,7 @@ test('Azure speech synth tests', async(t) => { language: 'en-US', voice: 'en-US-ChristopherNeural', text: longText, + renderForCaching: true }); t.ok(!opts.servedFromCache, `successfully synthesized microsoft audio to ${opts.filePath}`); if (process.env.JAMBONES_HTTP_PROXY_IP && process.env.JAMBONES_HTTP_PROXY_PORT) { @@ -203,6 +204,7 @@ test('Azure speech synth tests', async(t) => { language: 'en-US', voice: 'en-US-ChristopherNeural', text: longText, + renderForCaching: true }); t.ok(opts.servedFromCache, `successfully retrieved microsoft audio from cache ${opts.filePath}`); } catch (err) {