前言:
主要就紀錄一下目前開發小筆記。
參考資料:
Jest
toBe
=> check primitive type
toEqual
=> check not primitive type
如果有多組檔案名稱都是相同,如 index.test
可以直接在 CLI 下檔案路徑
1 | npm run test src\components\Widget\test\index.test.js |
如果只要特定檔案那可以下
1 | npm run test index.test.js |
Enzyme
Shallow vs Mount
兩者主要差異在 testing React 渲染時間點
https://gist.github.com/fokusferit/e4558d384e4e9cab95d04e5f35d4f913