__init__.py 417 B

123456789
  1. """
  2. Acceptance Tests
  3. An acceptance test is a full end-to-end (frontend and backend) test of a system
  4. designed as real use case scenarios. At Sentry, we test these actions with
  5. Selenium, an automated browser simulator. The advantage of using acceptance
  6. tests rather than unit tests is that they can ensure an entire feature's flow is
  7. functional. The disadvantage is that they can be slow and in some cases flaky.
  8. """