Ghost/ghost/core/test/e2e-server/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

33 lines
900 B
JavaScript

const {agentProvider, matchers, mockManager} = require('../utils/e2e-framework');
const {anyString, anyEtag} = matchers;
describe('.well-known', function () {
let agentGhostAPI;
before(async function () {
mockManager.mockMail();
agentGhostAPI = await agentProvider.getGhostAPIAgent();
});
after(function () {
mockManager.restore();
});
describe('GET /jwks.json', function () {
it('should return a JWKS', async function () {
await agentGhostAPI
.get('/.well-known/jwks.json')
.expectStatus(200)
.matchBodySnapshot({
keys: [{
kid: anyString,
n: anyString
}]
})
.matchHeaderSnapshot({
etag: anyEtag
});
});
});
});