mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 16:42:17 +03:00
28 lines
791 B
JavaScript
28 lines
791 B
JavaScript
|
const {agentProvider, matchers} = require('../utils/e2e-framework');
|
||
|
const {anyString, anyEtag} = matchers;
|
||
|
|
||
|
describe('.well-known', function () {
|
||
|
let agentGhostAPI;
|
||
|
|
||
|
before(async function () {
|
||
|
agentGhostAPI = await agentProvider.getGhostAPIAgent();
|
||
|
});
|
||
|
|
||
|
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
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|