f264c1d1f8
no issue - This test has nothing to do with outgoing emails, so no need to mock mail
32 lines
868 B
JavaScript
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
|
|
});
|
|
});
|
|
});
|
|
});
|