0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00
ghost/test/e2e-server/__snapshots__/well-known.test.js.snap
2022-05-20 13:18:26 +08:00

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",
}
`;