Lint
This commit is contained in:
parent
8cd40abe3a
commit
336950624d
|
@ -17,7 +17,7 @@ const rocketchat = axios.create({
|
|||
}
|
||||
});
|
||||
|
||||
const login = async (username: string, password: string) => {
|
||||
export const login = async (username: string, password: string) => {
|
||||
console.log(`Logging in as user ${username}`);
|
||||
const response = await rocketchat.post('login', {
|
||||
user: username,
|
||||
|
|
|
@ -9,7 +9,7 @@ import {
|
|||
TTextMatcher,
|
||||
expectValidRegisterOrRetry
|
||||
} from '../../helpers/app';
|
||||
import { createRandomRoom, createRandomUser, get, login, sendMessage } from '../../helpers/data_setup';
|
||||
import { createRandomRoom, createRandomUser, login, sendMessage } from '../../helpers/data_setup';
|
||||
import random from '../../helpers/random';
|
||||
|
||||
const DEEPLINK_METHODS = { AUTH: 'auth', ROOM: 'room' };
|
||||
|
|
Loading…
Reference in New Issue