MCPcopy Index your code
hub / github.com/nodeSolidServer/node-solid-server / testAuthQueryParams

Function testAuthQueryParams

test/unit/auth-request-test.mjs:16–27  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14
15describe('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 })

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected