From 7be7592a1d37fc42bd7984e5a419fb6bf5eb3d3d Mon Sep 17 00:00:00 2001 From: zcj <18137693952@163.com> Date: Mon, 3 Oct 2022 18:52:49 +0800 Subject: [PATCH] =?UTF-8?q?docs(zh):=20api/wrapper/emitted=20Notes=20?= =?UTF-8?q?=E6=96=AD=E8=A8=80=E4=BA=8B=E4=BB=B6=E7=9A=84=E6=95=B0=E9=87=8F?= =?UTF-8?q?=20to=20=E6=96=AD=E8=A8=80=E4=BA=8B=E4=BB=B6=E7=9A=84=E6=9C=89?= =?UTF-8?q?=E6=95=88=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/zh/api/wrapper/emitted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zh/api/wrapper/emitted.md b/docs/zh/api/wrapper/emitted.md index c1fe56f42..f629ef3e1 100644 --- a/docs/zh/api/wrapper/emitted.md +++ b/docs/zh/api/wrapper/emitted.md @@ -30,7 +30,7 @@ test('emit demo', async () => { // 断言事件的数量 expect(wrapper.emitted().foo.length).toBe(2) - // 断言事件的数量 + // 断言事件的有效数据 expect(wrapper.emitted().foo[1]).toEqual([123]) }) ```