2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

CircleCI で jest がタイムアウトする問題の対処

Posted at

問題

CircleCI 上で jest を実行した際、タイムアウトエラーが発生した。
特に時間がかかるテストでもなく、ローカルでは問題なく動作する。

Too long with no output (exceeded 10m0s): context deadline exceeded

解決策

公式ドキュメントに記述されていた。

Jest テストの実行時には、--runInBand フラグを使用してください。 このフラグがない場合、Jest は、ジョブを実行している仮想マシン全体に CPU リソースを割り当てようとします。 --runInBand を使用すると、Jest は、仮想マシン内の仮想化されたビルド環境のみを使用するようになります。

というわけで、--runInBand オプションをつければ OK。

jest --runInBand
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?