fix unit tests. add conversation model and add unit tests to it.
This commit is contained in:
parent
82d9c9c523
commit
edff1a7ab0
@ -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");
|
||||
|
@ -17,8 +17,8 @@ export class Message {
|
||||
export class Conversation extends Array<Message> {
|
||||
constructor (
|
||||
private translator : Translator,
|
||||
s1 : Speaker,
|
||||
s2 : Speaker,
|
||||
public s1 : Speaker,
|
||||
public s2 : Speaker,
|
||||
) {
|
||||
super();
|
||||
}
|
||||
@ -29,7 +29,8 @@ export class Conversation extends Array<Message> {
|
||||
|
||||
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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user