Viewing Add Break (Speech Builder) Output in Jovo Debugger


#1

Hello, I’ve been trying to add a break(timer) between two sentences. Code as follows.

TestIntent() {
this.$speech.addText(‘Hello, Welcome’).addBreak(‘3s’).addText(‘How are you doing?’);
this.tell(this.$speech);
},

The output in the Jovo Debugger shows up as shown below:

Hello, Welcome break time=“3s”/ How are you doing? (on slack)
Hello, Welcome (Break 3s) How are you doing? (on Jovo Debugger)

Expecting it to show the first statement and give a 3secs break and then show the second one. Instead, it shows the output as mentioned above.