jest
Unit test frame work for JS
ドキュメント読めば Ok
Globals · Jest
注意点
toThrow
expect で実行する関数を、関数でラップする必要がある
react native やっていると node では動かないからモックしたいものが多数ある、、、
jest での mock について
async 系のテストも注意ポイントがあるのでドキュメントよく読むこと
Testing Asynchronous Code · Jest
inBand しても実行順は保証されないらしい。順番自分で決めるには testSequencer を使う必要がある?
In what order does Jest execute tests anyway? (And how to change it!) - DEV Community 👩‍💻👨‍💻
テスト内の console が出力されない
--silent option がついていないか?
テスト実行
Jest CLI Options · Jest
jest はなにを test とみなすか
Configuring Jest · Jest
timeouts
The Jest Object · Jest
jest.config で設定した場合は、すべてのテストそれぞれの timeout 時間を設定しているのだと思う。テスト全体の timeout ではないように読める。
類似するテストケースをループで回す
Jest の test.each で Parameterized test を実行する
Object の一部だけにマッチすれば十分な場合
jestjs - In jest, how do I use "toHaveBeenCalledWith" and only match part of an object in an array argument? - Stack Overflow