riot-web/cypress/e2e/read-receipts
Andy Balaam d7d0f54e9b
Merge branch 'develop' into andybalaam/fix-receipt-flakes
2023-09-28 14:23:45 +01:00
..
editing-messages.spec.ts Fix lint error 2023-09-25 09:51:44 +01:00
high-level.spec.ts Fix flake in high-level tests by not using markAsRead 2023-09-25 09:55:37 +01:00
missing-referents.spec.ts Split the read-receipt tests into logical units (#11649) 2023-09-22 11:57:40 +00:00
new-messages.spec.ts Split the read-receipt tests into logical units (#11649) 2023-09-22 11:57:40 +00:00
reactions.spec.ts Split the read-receipt tests into logical units (#11649) 2023-09-22 11:57:40 +00:00
read-receipts-utils.ts Merge branch 'develop' into andybalaam/fix-receipt-flakes 2023-09-28 14:23:45 +01:00
read-receipts.spec.ts
readme.md Split the read-receipt tests into logical units (#11649) 2023-09-22 11:57:40 +00:00
redactions.spec.ts Split the read-receipt tests into logical units (#11649) 2023-09-22 11:57:40 +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.