Ghost/ghost/core/test/e2e-api/admin/site.test.js

26 lines
770 B
JavaScript
Raw Normal View History

const {agentProvider, matchers} = require('../../utils/e2e-framework');
const {anyEtag, stringMatching, anyContentLength, anyContentVersion} = matchers;
describe('Site API', function () {
let agent;
before(async function () {
agent = await agentProvider.getAdminAPIAgent();
});
it('can retrieve config and all expected properties', async function () {
await agent
.get('site/')
.matchBodySnapshot({
site: {
version: stringMatching(/\d+\.\d+/)
}
})
.matchHeaderSnapshot({
etag: anyEtag,
'content-length': anyContentLength,
'content-version': anyContentVersion
});
});
});