()
| 14 | |
| 15 | describe('AuthRequest', () => { |
| 16 | function testAuthQueryParams () { |
| 17 | const body = {} |
| 18 | body.response_type = 'code' |
| 19 | body.scope = 'openid' |
| 20 | body.client_id = 'client1' |
| 21 | body.redirect_uri = 'https://redirect.example.com/' |
| 22 | body.state = '1234' |
| 23 | body.nonce = '5678' |
| 24 | body.display = 'page' |
| 25 | |
| 26 | return body |
| 27 | } |
| 28 | |
| 29 | const host = SolidHost.from({ serverUri: 'https://localhost:8443' }) |
| 30 | const accountManager = AccountManager.from({ host }) |