element-web/playwright/e2e/read-receipts
Michael Telatynski 2dbaf00e71
Ditch right panel tabs and re-add close button (#99)
* Add extra buttons to room summary card

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Remove right panel tabs in favour of X button on each panel

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Update room summary card header to align close button correctly

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Fix typo in pinned messages heading

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Update snapshots

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Update tests

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Iterate

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Update snapshots

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Update screenshot

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Improve coverage

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* i18n

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Fix base card title colours

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Update snapshots

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

---------

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
2024-10-03 08:59:41 +00:00
..
editing-messages-in-threads.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
editing-messages-main-timeline.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
editing-messages-thread-roots.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
high-level.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
index.ts Ditch right panel tabs and re-add close button (#99) 2024-10-03 08:59:41 +00:00
message-ordering.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
missing-referents.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
new-messages-in-threads.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
new-messages-main-timeline.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
new-messages-thread-roots.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
notifications.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
reactions-in-threads.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
reactions-main-timeline.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
reactions-thread-roots.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
read-receipts.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
readme.md
redactions-in-threads.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
redactions-main-timeline.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
redactions-thread-roots.spec.ts Change license (#13) 2024-09-09 13:57:16 +00:00
room-list-order.spec.ts Change license (#13) 2024-09-09 13:57:16 +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 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.