1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-30 02:21:17 +03:00

Migrate one-to-one-chat.spec.ts from Cypress to Playwright (#11953)

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2023-11-28 11:02:50 +00:00
committed by GitHub
parent dbae856141
commit 1c72bb9e6f
5 changed files with 57 additions and 74 deletions

View File

@ -55,4 +55,5 @@ export interface Credentials {
deviceId: string;
homeServer: string;
password: string | null; // null for password-less users
displayName?: string;
}

View File

@ -193,6 +193,7 @@ export class Synapse implements Homeserver, HomeserverInstance {
userId: data.user_id,
deviceId: data.device_id,
password,
displayName,
};
}
}