mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
refs https://github.com/TryGhost/Team/issues/1640 - There was no coverage. Now there is :)
24 lines
633 B
Text
24 lines
633 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`.well-known GET /jwks.json should return a JWKS 1: [body] 1`] = `
|
|
Object {
|
|
"keys": Array [
|
|
Object {
|
|
"e": "AQAB",
|
|
"kid": Any<String>,
|
|
"kty": "RSA",
|
|
"n": Any<String>,
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`.well-known GET /jwks.json should return a JWKS 2: [headers] 1`] = `
|
|
Object {
|
|
"content-length": "265",
|
|
"content-type": "application/json; charset=utf-8",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Accept-Encoding",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|