mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
- we no longer have any concept of testing other versions than canary, therefore this folder doesn't mean anything
26 lines
801 B
Text
26 lines
801 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Config API can retrieve config and all expected properties 1`] = `
|
|
Object {
|
|
"accent_color": "#FF1A75",
|
|
"description": "Thoughts, stories and ideas",
|
|
"icon": null,
|
|
"logo": null,
|
|
"title": "Ghost",
|
|
"url": "http://127.0.0.1:2369/",
|
|
"version": StringMatching /\\\\d\\+\\\\\\.\\\\d\\+/,
|
|
}
|
|
`;
|
|
|
|
exports[`Config API can retrieve config and all expected properties 2`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"content-length": "167",
|
|
"content-type": "application/json; charset=utf-8",
|
|
"date": Any<String>,
|
|
"etag": Any<String>,
|
|
"vary": "Origin, Accept-Encoding",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|