89493893d1
- this cleans up all imports or variables that aren't currently being used - this really helps keep the tests clean by only allowing what is needed - I've left `should` as an exemption for now because we need to clean up how it is used
34 lines
955 B
JavaScript
34 lines
955 B
JavaScript
const {agentProvider, matchers, mockManager} = require('../../utils/e2e-framework');
|
|
const {anyString, anyEtag} = matchers;
|
|
|
|
describe('Members .well-known', function () {
|
|
let membersAgent;
|
|
|
|
before(async function () {
|
|
const agents = await agentProvider.getAgentsForMembers();
|
|
membersAgent = agents.membersAgent;
|
|
mockManager.mockMail();
|
|
});
|
|
|
|
after(function () {
|
|
mockManager.restore();
|
|
});
|
|
|
|
describe('GET /jwks.json', function () {
|
|
it('should return a JWKS', async function () {
|
|
await membersAgent
|
|
.get('/.well-known/jwks.json')
|
|
.expectStatus(200)
|
|
.matchBodySnapshot({
|
|
keys: [{
|
|
kid: anyString,
|
|
n: anyString
|
|
}]
|
|
})
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag
|
|
});
|
|
});
|
|
});
|
|
});
|