Disable failing playwright test (#12176)

This is the first test in the file, so it's possible that the failure will move
to the next test. But let's give it a try.
This commit is contained in:
Richard van der Hoff 2024-01-24 09:54:14 +00:00 committed by GitHub
parent a665f028c2
commit ca5ab09f3b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -107,7 +107,12 @@ test.describe("Read receipts", () => {
await page.goto(`/#/room/${selectedRoomId}`);
});
test("With sync accumulator, considers main thread and unthreaded receipts #24629", async ({ page, app, bot }) => {
// Disabled due to flakiness: https://github.com/element-hq/element-web/issues/26895
test.skip("With sync accumulator, considers main thread and unthreaded receipts #24629", async ({
page,
app,
bot,
}) => {
// Details are in https://github.com/vector-im/element-web/issues/24629
// This proves we've fixed one of the "stuck unreads" issues.