element-web/cypress/e2e/read-receipts
Kerry 238ff8d665
Cypress flake: disable `Paging up through old messages after a room is read leaves the room read` (#11801)
* disable flaky cypress test `Paging up through old messages after a room is read leaves the room read`

* Update cypress/e2e/read-receipts/high-level.spec.ts

---------

Co-authored-by: Michael Weimann <michaelw@matrix.org>
2023-10-26 07:30:51 +00:00
..
editing-messages.spec.ts
high-level.spec.ts Cypress flake: disable `Paging up through old messages after a room is read leaves the room read` (#11801) 2023-10-26 07:30:51 +00:00
missing-referents.spec.ts
new-messages.spec.ts
reactions.spec.ts
read-receipts-utils.ts
read-receipts.spec.ts
readme.md
redactions.spec.ts Enable tests that have been fixed by matrix-js-sdk#3798 (#11762) 2023-10-18 16:12:35 +00:00

readme.md

High Level Read Receipt Tests

Tips for writing these tests:

  • Break up your tests into the smallest test case possible. The purpose of these tests is to understand hard-to-find bugs, so small tests are necessary. We know that Cypress recommends combining tests together for performance, but that will frustrate our goals here. (We will need to find a different way to reduce CI time.)

  • Try to assert something after every action, to make sure it has completed. E.g.: markAsRead(room2); assertRead(room2); You should especially follow this rule if you are jumping to a different room or similar straight afterwards.

  • Use assertStillRead() if you are asserting something is read when it was also read before. This waits a little while to make sure you're not getting a false positive.