添加测试配置及登陆部分的测试

Change-Id: I6fa1fe23ad8773548927fdc921dceab841f2368a
diff --git a/src/utils/axios.ts b/src/utils/axios.ts
index c7639b0..1eaad87 100644
--- a/src/utils/axios.ts
+++ b/src/utils/axios.ts
@@ -13,7 +13,7 @@
   instance.interceptors.request.use(
     (config) => {
       // 添加认证 token
-      const token = localStorage.getItem('access_token')
+      const token = localStorage.getItem('token')
       if (token) {
         config.headers.Authorization = `Bearer ${token}`
       }