Ghost/ghost/core/test/e2e-api/members/well-known.test.js
Sam Lord cd5aca7227 Prevented .well-known file tests from attempting to send mail
refs: https://github.com/TryGhost/Toolbox/issues/389

These tests would log errors while attempting to send email.
2023-03-03 18:25:53 +00:00

34 lines
971 B
JavaScript

const {agentProvider, fixtureManager, 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
});
});
});
});