From edff1a7ab0c0c733affc845f7d2125216df410ca Mon Sep 17 00:00:00 2001 From: Jordan Hewitt Date: Sat, 25 Jan 2025 09:12:59 -0800 Subject: [PATCH] fix unit tests. add conversation model and add unit tests to it. --- app/lib/__test__/conversation.test.tsx | 1 - app/lib/conversation.ts | 7 ++++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/lib/__test__/conversation.test.tsx b/app/lib/__test__/conversation.test.tsx index a185c40..269a272 100644 --- a/app/lib/__test__/conversation.test.tsx +++ b/app/lib/__test__/conversation.test.tsx @@ -16,7 +16,6 @@ describe('Conversation', () => { it('should add a message to the conversation', () => { conversation.addMessage({ id: "s1", language: "en" }, "Hello"); - expect(true).toEqual(false); expect(conversation.length).toBe(1); expect(conversation[0].speaker.id).toEqual("s1"); expect(conversation[0].text).toEqual("hello"); diff --git a/app/lib/conversation.ts b/app/lib/conversation.ts index e8cdd67..d69fb00 100644 --- a/app/lib/conversation.ts +++ b/app/lib/conversation.ts @@ -17,8 +17,8 @@ export class Message { export class Conversation extends Array { constructor ( private translator : Translator, - s1 : Speaker, - s2 : Speaker, + public s1 : Speaker, + public s2 : Speaker, ) { super(); } @@ -29,7 +29,8 @@ export class Conversation extends Array { public async translateMessage(i : number) { if (!this[i]) throw new Error(`${i} is not a valid message number`); - await this[i].translate(this.translator, this[i].speaker.language); + const otherSpeaker = this[i].speaker.id === this.s1.id ? this.s2 : this.s1 + await this[i].translate(this.translator, otherSpeaker.language); } public async translateLast() {