copilot chat 的部分一樣依照兩個檔案分別做測試
頁面測試需要給他 ModalContext.provider
的 value 值,並請他使用在 ./data/modal.data
裡面的資料來進行判斷。
/tests mock openModal use ModalContext.provider. The value type is
{ isOpen: boolean; openModal: (text?: string) => void; closeModal: () => void; content: string; };
and the text use the data in ./data/modal.data
元件測試一樣請他模擬 closeModal()
函式,不過因為還要測試彈窗內容顯示是否正確,所以這邊直接跟他說給我兩個測試案例,一個是模擬 closeModal()
函式,另一個是測試彈窗內容是否正確。
/tests two test case
- mock closeModal use ModalContext.provider. The value type is
{ isOpen: boolean; openModal: (text?: string) => void; closeModal: () => void; content: string; };
- test content correct
像使用外部的 useContext()
做測試時,需要提供完整的 value 內容,才能讓測試順利進行,因為前面有提過 copilot chat 只會根據當前打開的檔案進行分析,所以只要測試需要使用到當前檔案以外的資料時,都需要事先提供給 copilot chat,這樣他才能幫你產生正確的程式碼。