()
| 20 | |
| 21 | // Create a new auth client and update it's ready state |
| 22 | async create() { |
| 23 | this.authClient = await AuthClient.create(); |
| 24 | await this.authClient?.isAuthenticated(); |
| 25 | this.ready = true; |
| 26 | } |
| 27 | |
| 28 | async login(): Promise<Identity | undefined> { |
| 29 | return new Promise(async (resolve) => { |
no test coverage detected