Ghost/ghost/core/test/e2e-server/well-known.test.js
Naz f264c1d1f8
Removed unnecessary mockMail call
no issue

- This test has nothing to do with outgoing emails, so no need to mock mail
2023-04-07 14:34:57 +02:00

32 lines
868 B
JavaScript

const {agentProvider, matchers, mockManager} = require('../utils/e2e-framework');
const {anyString, anyEtag} = matchers;
describe('.well-known', function () {
let agentGhostAPI;
before(async function () {
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
});
});
});
});