Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
t3chguy/playwright-homeservers
Michael Telatynski 2025-01-07 11:18:26 +00:00
parent 7d8f00f404
commit e4cff3fba0
No known key found for this signature in database
GPG Key ID: A2B008A5F49F5D0D
4 changed files with 5 additions and 2 deletions

View File

@ -102,6 +102,7 @@ test.describe("Key backup reset from elsewhere", () => {
});
test.describe("Backups", () => {
test.skip(isDendrite, "Dendrite lacks support for MSC3967 so requires additional auth here");
test.use({
displayName: "Hanako",
});

View File

@ -8,8 +8,10 @@ Please see LICENSE files in the repository root for full details.
import { test, expect } from "../../element-web-test";
import { createRoom, enableKeyBackup, logIntoElement, sendMessageInCurrentRoom } from "./utils";
import { isDendrite } from "../../plugins/homeserver/dendrite";
test.describe("Logout tests", () => {
test.skip(isDendrite, "Dendrite lacks support for MSC3967 so requires additional auth here");
test.beforeEach(async ({ page, homeserver, credentials }) => {
await logIntoElement(page, credentials);
});

View File

@ -93,6 +93,7 @@ test.describe("Login", () => {
});
test.describe("Password login", () => {
test.skip(isDendrite, "Dendrite lacks support for MSC3967 so requires additional auth here");
test.use(consentHomeserver);
let creds: Credentials;

View File

@ -11,6 +11,7 @@ import { consentHomeserver } from "../../plugins/homeserver/synapse/consentHomes
import { isDendrite } from "../../plugins/homeserver/dendrite";
test.describe("Registration", () => {
test.skip(isDendrite, "Dendrite lacks support for MSC3967 so requires additional auth here");
test.use(consentHomeserver);
test.use({
config: {
@ -32,8 +33,6 @@ test.describe("Registration", () => {
"registers an account and lands on the home screen",
{ tag: "@screenshot" },
async ({ homeserver, page, checkA11y, crypto }) => {
test.skip(isDendrite, "Dendrite lacks support for MSC3967 so requires additional auth here");
await page.getByRole("button", { name: "Edit", exact: true }).click();
await expect(page.getByRole("button", { name: "Continue", exact: true })).toBeVisible();