titangene / hexo-blog

Hexo blog source code
https://titangene.github.io/
0 stars 1 forks source link

Jest:Setup & Teardown | Titangene Blog #23

Open titangene opened 4 years ago

titangene commented 4 years ago

https://titangene.github.io/article/jest-setup-teardown.html

每個測試案例都必須是獨立的,不能互相影響,而解決方法就是讓每個測試在執行前進行重設,或在每個測試結束後清除痕跡。在 Jest,提供 setup 和 teardown 的函數,能讓你自訂在執行 describe 區塊或 test 區塊的前後分別要做什麼準備和收尾。