End-to-End Test - CI/CD用語集の定義
end-to-end test とは、ユーザーが行うようにアプリケーション全体を(UI または公開 API を通じて)動かし、システム全体が最初から最後まで一体として動作することを確認するものである。
CI において
end-to-end test は最も遅く最も壊れやすい層であるため、テストピラミッドの頂点に位置し、flaky な失敗のよくある発生源になります。
関連ガイド
System Test - CI/CD Glossary DefinitionSystem Test: A system test validates the complete, integrated application against its requirements in an envi…
Test Pyramid - CI/CD Glossary DefinitionTest Pyramid: The test pyramid is a strategy that recommends many fast unit tests at the base, fewer integrat…
Flaky Test - CI/CD Glossary DefinitionFlaky Test: A **flaky test** passes and fails on the same code due to nondeterminism (races, timing, external…