yarn lint

This commit is contained in:
gnuxie 2022-02-23 12:32:20 +00:00
parent d15b1229ee
commit 14c97d3b5d
2 changed files with 4 additions and 4 deletions

View File

@ -79,7 +79,7 @@ export type RegistrationOptions = {
/**
* Register a new test user.
*
* @returns A string that is both the username and password of a new user.
* @returns A string that is both the username and password of a new user.
*/
async function registerNewTestUser(options: RegistrationOptions) {
do {

View File

@ -82,10 +82,10 @@ export async function makeMjolnir(): Promise<Mjolnir> {
await overrideRatelimitForUser(await client.getUserId());
patchMatrixClient();
await ensureAliasedRoomExists(client, config.managementRoom);
let mjolnir = await Mjolnir.setupMjolnirFromConfig(client);
let mj = await Mjolnir.setupMjolnirFromConfig(client);
globalClient = client;
globalMjolnir = mjolnir;
return mjolnir;
globalMjolnir = mj;
return mj;
}
/**