タグ

ブックマーク / jamiemagee.co.uk (1)

  • Your Jest tests might be wrong

    Your Jest tests might be wrongMay 4, 2023 · 7 minute read · CommentsIs your Jest test suite failing you? You might not be using the testing framework’s full potential, especially when it comes to preventing state leakage between tests. The Jest settings clearMocks, resetMocks, restoreMocks, and resetModules are set to false by default. If you haven’t changed these defaults, your tests might be fra

    jay-es
    jay-es 2023/05/20
    テストでは毎回モックをクリア・リセットするのがよい。前回のモックが残っているとテストの順番によって結果が変わってしまう
  • 1