From 4101256cc0718c0547022b1bfd3cbd75e7d48d3e Mon Sep 17 00:00:00 2001
From: Zhou <zhou.working@gmail.com>
Date: Tue, 8 Nov 2022 11:35:05 +0800
Subject: [PATCH] Update test.md

---
 docs/en-US/development/client/test.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/en-US/development/client/test.md b/docs/en-US/development/client/test.md
index 452ea9f46..d8d19e163 100644
--- a/docs/en-US/development/client/test.md
+++ b/docs/en-US/development/client/test.md
@@ -1,8 +1,8 @@
-# 测试
+# Testing
 
-测试基于 [Jest](https://jestjs.io/) 测试框架。同时还包括了常用的 React 测试库,如 [@testing-library/react](https://testing-library.com/docs/react-testing-library/intro/)
+Testing is based on the [Jest](https://jestjs.io/) testing framework. Also included are common React testing libraries such as [@testing-library/react](https://testing-library.com/docs/react-testing-library/intro/)
 
-## 示例
+## Example
 
 ```tsx | pure
 import { render } from '@testing-library/react';
@@ -38,4 +38,4 @@ describe('route-switch', () => {
     expect(container).toMatchSnapshot();
   });
 });
-```
\ No newline at end of file
+```