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() {