jest unit testが落ちる原因がわからない
jest unit testが落ちる原因がわからないです。
単体で動かせば問題なくpassします。
下記のコマンドを動かすと下記のエラーが出ます。
yarn unit --runInBand --detectOpenHandles --forceExit
● error loding test › next prev ボタンの確認
TypeError: Cannot read properties of null (reading 'body')
125 | }, []);
126 |
> 127 | return { ...masterData, loading, error };
| ^
128 | };
129 |
下記のコマンドを動かすとerrorが出ずに途中で終了しますがerrorのテストは見当たらないです。
しかし必ず437/460で止まります。leak漏れかと思っておりますが、3000とかですし、NODE_OPTIONS=--max_old_space_size=8192も使用しています。
yarn unit --forceExit --bail
Test Suites: 20 skipped, 438 passed, 438 of 458 total
Tests: 84 skipped, 1 todo, 1514 passed, 1599 total
Snapshots: 1218 passed, 1218 total
Time: 325.877 s
Ran all test suites.
Force exiting Jest: Have you considered using `--detectOpenHandles` to detect async operations that kept running after all tests finished?
0