diff --git a/packages/text-to-speech/test/fixtures/blockquote.html b/packages/text-to-speech/test/fixtures/blockquote.html index 6cc238e7b..1f4f016de 100644 --- a/packages/text-to-speech/test/fixtures/blockquote.html +++ b/packages/text-to-speech/test/fixtures/blockquote.html @@ -1 +1 @@ -

Join the Slow Chinese Community

Our first live meet-up kicks-off in just under 24 hours at 7pm UK time on Tuesday 15 November.

The 20% discount on annual membership ends just before that at 6pm on Tuesday.

So click here to claim your discount and join our first monthly meet-up.

Join Now!

What resources do I get access to as a member?

As a member of the community, you’ll get access to lots of extra learning tools, helping you use the newsletter content as a resource to take your Chinese language skills to the next level:

  • 🔉Podcast

  • ✅ Downloads

  • 📚Reading practice

  • 🔎 Archive

  • 💬 Community

Join Now!

Is the membership right for me?

And as the clock ticks and this ship gets ready to set sail, here is a quick quiz to decide if membership is right for you:

  • Are you frustrated that your hard-won Chinese language skills are getting worse not better?

  • Do you find it hard to make time for improving your language skills?

  • Do you struggle with motivation to carry on learning Chinese?

  • Is it difficult to find good content to help you learn?

If you are an advanced or long-time learner of Chinese, and the answer to any of these questions is ‘yes’, the you’re in luck.

Because the 200+ members of the Slow Chinese community all faced these exact same problems.

But they now access unique learning resources, engaging content, and a community of like-minded learners who are all taking their language skills to the next level.

So….

Click here to claim your discount and join our first monthly meet-up on Tuesday at 7pm.

Join Now!

What’s on the agenda in our first meet-up?

The format will be a conversation in mostly English between me and our editor, Zoe Qian.

We will discuss your questions about your language learning challenges, any content you’ve read in the newsletter, and on the membership product.

We’ll chat for around 30 minutes. And we’ll publish the audio recording as a member-only podcast shortly after.

We’ll aim to answer 3-5 questions in the live session.

Some questions submitted so far include:

  • Just for curiosity, how do you pick the articles for Slow Chinese?

  • Any advice on finding opportunities to communicate in Chinese?

  • What are your tips to improve comprehension?  I feel like I’m working on reading, listening, and speaking all at once, sometimes I feel like I’m just getting surface understanding.

  • I often feel I use the same words/phrases over and over and my short-term memory is weak, I live in a non-Chinese environment although I have many opportunities to practice Chinese and have no plans to travel to China.

  • I'm American-born Chinese, so I grew up with Chinese speaking parents, but I used English and home and in daily life. My listening is strong, everything else is weak. I'm in China currently studying in a Master's program. I'm probably about HSK5-6 in my vocabulary and reading comprehension. If you have any tips for picking up reading/speaking, I'd love to know.

Join Now!

As long as you sign up before the deadline of 6pm 15 November, you’ll get the discount and be able join live and ask a question.

So, hopefully we’ll see quite a few of you tomorrow!

Andrew

+++

Ps - we’ve added a lot to the membership product over the last few months. So we plan to increase our prices in December. This discount will lock you in to the lower price of $96 per year for as long as you are subscribed.

+
  • Just for curiosity, how do you pick the articles for Slow Chinese?

  • Any advice on finding opportunities to communicate in Chinese?

  • What are your tips to improve comprehension?  I feel like I’m working on reading, listening, and speaking all at once, sometimes I feel like I’m just getting surface understanding.

  • I often feel I use the same words/phrases over and over and my short-term memory is weak, I live in a non-Chinese environment although I have many opportunities to practice Chinese and have no plans to travel to China.

  • I'm American-born Chinese, so I grew up with Chinese speaking parents, but I used English and home and in daily life. My listening is strong, everything else is weak. I'm in China currently studying in a Master's program. I'm probably about HSK5-6 in my vocabulary and reading comprehension. If you have any tips for picking up reading/speaking, I'd love to know.

diff --git a/packages/text-to-speech/test/htmlToSsml.test.ts b/packages/text-to-speech/test/htmlToSsml.test.ts index 261ebf549..a2673f465 100644 --- a/packages/text-to-speech/test/htmlToSsml.test.ts +++ b/packages/text-to-speech/test/htmlToSsml.test.ts @@ -301,6 +301,12 @@ describe('convert HTML to Speech file', () => { options: TEST_OPTIONS, }) - expect(speechFile.utterances).to.have.lengthOf(42) + expect(speechFile.utterances).to.have.lengthOf(5) + expect(speechFile.utterances[0].text).to.eql( + 'Just for curiosity, how do you pick the articles for Slow Chinese? Any advice on finding opportunities to communicate in Chinese? What are your tips to improve comprehension? ' + ) + expect(speechFile.utterances[1].text).to.eql( + 'I feel like I’m working on reading, listening, and speaking all at once, sometimes I feel like I’m just getting surface understanding. ' + ) }) })