element-web/playwright/e2e/read-receipts
R Midhun Suresh bb1b7f1fd0
Default the room header to on (#12803)
* Default the room header to on

* Refactor code into helper method

Add a method to open/close the room info panel and use it everywhere.

* Fix broken tests, update snapshots and screenshots

* Update room header tests to make sense with the new header
2024-07-23 10:56:25 +00:00
..
editing-messages-in-threads.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
editing-messages-main-timeline.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
editing-messages-thread-roots.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
high-level.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
index.ts Default the room header to on (#12803) 2024-07-23 10:56:25 +00:00
message-ordering.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
missing-referents.spec.ts Migrate most read-receipts tests from Cypress to Playwright (#11994) 2023-12-05 10:37:23 +00:00
new-messages-in-threads.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
new-messages-main-timeline.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
new-messages-thread-roots.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
notifications.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
reactions-in-threads.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
reactions-main-timeline.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
reactions-thread-roots.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
read-receipts.spec.ts Take the Threads Activity Centre out of labs (#12439) 2024-04-29 15:30:19 +00:00
readme.md Migrate most read-receipts tests from Cypress to Playwright (#11994) 2023-12-05 10:37:23 +00:00
redactions-in-threads.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
redactions-main-timeline.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
redactions-thread-roots.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00
room-list-order.spec.ts Split up slow Playwright tests (#12741) 2024-07-10 09:06:13 +00:00

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 Playwright 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 afterward.

  • 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.