You are entering an incorrect email and/or password.
Login
```
完成後在終端機輸入 `yarn dev`,然後進入網址:http://localhost:3000

> 我這邊有調整「src/router/index.ts」,將 Login 的 path 設定為「/」,讀者可以[參考 Github](https://github.com/dean9703111/-vuetify-vite-ts-test-exmaples)。
### 三、從測試案例了解 @vue/test-utils 常用的功能
這邊會取幾個測試案例來做解說,完成的範例請參考[筆者的 Github](https://github.com/dean9703111/-vuetify-vite-ts-test-exmaples)(順手點個 Star 會讓筆者會開心一整天)。
#### ▶︎ 測試檔案初始設定
我們在 views 資料夾下新增「**test**」資料夾,並新增「Login.spec.ts」的測試檔案:
- 透過 import 引入我們會使用到的方法
- 這邊透過 beforeEach 來初始化我們要測試 Login.vue
```ts
import { describe, it, expect, beforeEach, vi } from "vitest";
import { mount, VueWrapper } from "@vue/test-utils";
import Login from "../Login.vue";
import vuetify from "@/plugins/vuetify";
import router from "@/router";
let wrapper: VueWrapper