From 791dbab7397579e984b91bba0bcfec084c416b33 Mon Sep 17 00:00:00 2001 From: Emily Date: Sat, 13 Dec 2025 23:04:31 +0100 Subject: [PATCH] edited the timeouts for the transcription and LLM tests --- test/unit/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/test.js b/test/unit/test.js index 7017f04..3560969 100644 --- a/test/unit/test.js +++ b/test/unit/test.js @@ -78,7 +78,7 @@ describe("Unit Tests", function() { describe("Audio Transcription", function() { this.slow(20000) - this.timeout(60000) + this.timeout(120000) it('Assembly', function (done) { mapFunctions.get("assembly").function(audiopath).then(resp => { @@ -143,7 +143,7 @@ describe("Unit Tests", function() { describe("Large Language Model", function() { this.slow(30000) - this.timeout(60000) + this.timeout(120000) // it("ChatGPT", function (done){ // mapFunctions.get("chatgpt").function({inputTranscriptPath: summarizePath, documentTypePath: "./storage/documentType/meetingReport.json", language: "en"}).then(resp => {