fix unit tests. add conversation model and add unit tests to it.

This commit is contained in:
Jordan Hewitt 2025-01-25 09:12:59 -08:00
parent 82d9c9c523
commit edff1a7ab0
2 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,6 @@ describe('Conversation', () => {
it('should add a message to the conversation', () => { it('should add a message to the conversation', () => {
conversation.addMessage({ id: "s1", language: "en" }, "Hello"); conversation.addMessage({ id: "s1", language: "en" }, "Hello");
expect(true).toEqual(false);
expect(conversation.length).toBe(1); expect(conversation.length).toBe(1);
expect(conversation[0].speaker.id).toEqual("s1"); expect(conversation[0].speaker.id).toEqual("s1");
expect(conversation[0].text).toEqual("hello"); expect(conversation[0].text).toEqual("hello");

View File

@ -17,8 +17,8 @@ export class Message {
export class Conversation extends Array<Message> { export class Conversation extends Array<Message> {
constructor ( constructor (
private translator : Translator, private translator : Translator,
s1 : Speaker, public s1 : Speaker,
s2 : Speaker, public s2 : Speaker,
) { ) {
super(); super();
} }
@ -29,7 +29,8 @@ export class Conversation extends Array<Message> {
public async translateMessage(i : number) { public async translateMessage(i : number) {
if (!this[i]) throw new Error(`${i} is not a valid message 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() { public async translateLast() {