Fix/disable failing playwright tests (#12402)
* Set display name earlier to fix playwright test Unsure why this is failing on CI, it's fine locally. Let's try setting the display name earlier to see if that fixes it. * Disable failing presence test also comments * Link issue too
This commit is contained in:
parent
015b9386e1
commit
f37821d62c
5 changed files with 14 additions and 6 deletions
|
@ -23,7 +23,9 @@ test.describe("Presence tests", () => {
|
|||
});
|
||||
|
||||
test.describe("bob unreachable", () => {
|
||||
test("renders unreachable presence state correctly", async ({ page, app, user, bot: bob }) => {
|
||||
// This is failing on CI (https://github.com/element-hq/element-web/issues/27270)
|
||||
// but not locally, so debugging this is going to be tricky. Let's disable it for now.
|
||||
test.skip("renders unreachable presence state correctly", async ({ page, app, user, bot: bob }) => {
|
||||
await app.client.createRoom({ name: "My Room", invite: [bob.credentials.userId] });
|
||||
await app.viewRoomByName("My Room");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue