remove unnecesary function

This commit is contained in:
Gustavo Fuhr 2022-12-02 19:20:55 -03:00
parent 813394b6cb
commit b6ba119b9a

View File

@ -410,14 +410,6 @@ class MockClient implements Client {
return Promise.resolve({ action: 'EMAIL_SENT' });
}
wait(ms: number): Promise<number> {
return new Promise((resolve) => {
setTimeout(() => {
resolve(ms);
}, ms);
});
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
processGoogleCallback(code: string): Promise<Oauth2CallbackResult> {
// artificial delay for more realistic mock experience