You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-08-09 08:42:50 +03:00
lint
This commit is contained in:
@@ -80,7 +80,7 @@ module.exports = async function signup(session, username, password, homeserver)
|
|||||||
await acceptButton.click();
|
await acceptButton.click();
|
||||||
|
|
||||||
// Continue with the default (generate a security key)
|
// Continue with the default (generate a security key)
|
||||||
let xsignContButton = await session.query('.mx_CreateSecretStorageDialog .mx_Dialog_buttons .mx_Dialog_primary');
|
const xsignContButton = await session.query('.mx_CreateSecretStorageDialog .mx_Dialog_buttons .mx_Dialog_primary');
|
||||||
await xsignContButton.click();
|
await xsignContButton.click();
|
||||||
|
|
||||||
//ignore the recovery key
|
//ignore the recovery key
|
||||||
@@ -89,7 +89,9 @@ module.exports = async function signup(session, username, password, homeserver)
|
|||||||
await copyButton.click();
|
await copyButton.click();
|
||||||
|
|
||||||
//acknowledge that we copied the recovery key to a safe place
|
//acknowledge that we copied the recovery key to a safe place
|
||||||
const copyContinueButton = await session.query('.mx_CreateSecretStorageDialog .mx_Dialog_buttons .mx_Dialog_primary');
|
const copyContinueButton = await session.query(
|
||||||
|
'.mx_CreateSecretStorageDialog .mx_Dialog_buttons .mx_Dialog_primary',
|
||||||
|
);
|
||||||
await copyContinueButton.click();
|
await copyContinueButton.click();
|
||||||
|
|
||||||
//wait for registration to finish so the hash gets set
|
//wait for registration to finish so the hash gets set
|
||||||
|
Reference in New Issue
Block a user