Ghost/ghost/core/test/e2e-api/members/well-known.test.js
Daniel Lockyer 89493893d1 Removed all unused variables from test files
- 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
2023-03-10 14:29:55 +01:00

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
});
});
});
});